Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Mar 28, 2024
1 parent e7615af commit 0a8537b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oqs/oqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _install_liboqs():
copy_cmd = "copy " + src + " " + dest
print("copy command: ")
print(copy_cmd)
os.system("copy " + src + " " + dest)
os.system('copy "' + src + '" "' + dest + '"')
print("done copying")
sys.path.append(oqs_path)
print("done path")
Expand Down

0 comments on commit 0a8537b

Please sign in to comment.