Skip to content

Commit

Permalink
Fix, fix, fix, fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xia-mc committed Nov 13, 2024
1 parent af11854 commit a6671b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
echo Running on Windows
python ./setup.py build_ext --inplace
python ./setup.py build
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
python ./setup.py build_ext --inplace
python ./setup.py build
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@

if files:
sourceFile = files[0]
targetFile = os.path.join("./pyfastutil", "__pyfastutil" + ".pyd" if IS_WINDOWS else ".so")
targetFile = os.path.join("./pyfastutil", "__pyfastutil" + (".pyd" if IS_WINDOWS else ".so"))

shutil.move(sourceFile, targetFile)
print(f"File moved and renamed from {sourceFile} to {targetFile}")
Expand Down

0 comments on commit a6671b1

Please sign in to comment.