Skip to content

Commit

Permalink
fix wrong shell syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Junduo Dong <[email protected]>
  • Loading branch information
An-DJ committed Nov 2, 2024
1 parent 4d15089 commit fa649b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ genrule(
WORK_DIR=$$(pwd)
u_name=`uname -s`
os_name=$${u_name: 0: 4}
if [ "${os_name}" == "MING" ] || [ "${os_name}" == "MSYS" ]
if [ "$(os_name)" == "MING" ] || [ "$(os_name)" == "MSYS" ]
then
cp -f $(location python/pyfury/_util.so) "$$WORK_DIR/python/pyfury/_util.pyd"
cp -f $(location python/pyfury/lib/mmh3/mmh3.so) "$$WORK_DIR/python/pyfury/lib/mmh3/mmh3.pyd"
Expand Down

0 comments on commit fa649b9

Please sign in to comment.