We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4220d7c commit ff4a8beCopy full SHA for ff4a8be
1 file changed
download.sh
@@ -39,7 +39,7 @@ tty -s || quiet=true
39
40
# Note: optional arguments like "--quiet" shifts argument positions in the case block above
41
42
-version=${1:-0.5}
+version=${1:-0.6.0}
43
repoType=${2:-testing}
44
os=${3:-$(uname)}
45
arch=${4:-$(uname -m)}
@@ -235,8 +235,8 @@ if ${quiet} ; then
235
fi
236
else
237
if [ -z "${installLibrary:-}" ] && [ -n "${libDirectory}" ]; then
238
- read -p "OK. Do you want to install the library into ${libDirectory}? [y/N] " -r
239
- if [[ $REPLY =~ ^[Yy]$ ]]; then
+ read -p "OK. Do you want to install the library into ${libDirectory}? [Y/n] " -r
+ if [[ $REPLY =~ ^[Yy]$ ]] || [[ -z "$REPLY" ]] ; then
240
installLibrary=true
241
242
if [ -n "${oldLibDir}" ] && [ -f "${oldLibDir}/${libFileName}" ] ; then
0 commit comments