Skip to content

Commit 7271b98

Browse files
committed
Fix
1 parent 89ab7a5 commit 7271b98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/install_via_pip.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
PYTORCH_NIGHTLY=false
66
DEPLOY=false
77
CHOSEN_TORCH_VERSION=-1
8-
INSTALL_MODE='test'
8+
INSTALL_MODE=test
99

1010
while getopts 'ndfv:' flag; do
1111
case "${flag}" in
@@ -14,7 +14,7 @@ while getopts 'ndfv:' flag; do
1414
f) FRAMEWORKS=true ;;
1515
v) CHOSEN_TORCH_VERSION=${OPTARG};;
1616
m) INSTALL_MODE=${OPTARG};;
17-
*) echo "usage: $0 [-n] [-d] [-f] [-v version]" >&2
17+
*) echo "usage: $0 [-n] [-d] [-f] [-v version] [-m install_mode]" >&2
1818
exit 1 ;;
1919
esac
2020
done

0 commit comments

Comments
 (0)