Skip to content

Commit

Permalink
Merge pull request #8052 from OpenMined/add_v_for_name_consistency
Browse files Browse the repository at this point in the history
name change for syftcli binaries
  • Loading branch information
rasswanth-s authored Aug 30, 2023
2 parents c4c9e16 + 253dcd2 commit 497e49d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ commands =
echo "Building syftcli-$SYFT_CLI_VERSION for $OSTYPE" && \
if [[ "$OSTYPE" == "darwin"* ]]; then \
pyinstaller --clean --onefile --name syftcli-$SYFT_CLI_VERSION-macos-universal2 --distpath ./dist/cli src/syftcli/cli.py --target-arch universal2; \
pyinstaller --clean --onefile --name syftcli-v$SYFT_CLI_VERSION-macos-universal2 --distpath ./dist/cli src/syftcli/cli.py --target-arch universal2; \
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then \
pyinstaller --clean --onefile --name syftcli-$SYFT_CLI_VERSION-linux-x86_64 --distpath ./dist/cli src/syftcli/cli.py; \
pyinstaller --clean --onefile --name syftcli-v$SYFT_CLI_VERSION-linux-x86_64 --distpath ./dist/cli src/syftcli/cli.py; \
else \
pyinstaller --clean --onefile --name syftcli-$SYFT_CLI_VERSION-windows-x86_64 --distpath ./dist/cli src/syftcli/cli.py; \
pyinstaller --clean --onefile --name syftcli-v$SYFT_CLI_VERSION-windows-x86_64 --distpath ./dist/cli src/syftcli/cli.py; \
fi'


Expand Down

0 comments on commit 497e49d

Please sign in to comment.