1 parent cf6ad1d commit dcefc97Copy full SHA for dcefc97
1 file changed
download.sh
@@ -2,11 +2,9 @@
2
set -e
3
4
print_welcome() {
5
- echo "RUN-THAT-APP DOWNLOAD SCRIPT"
6
- echo
7
- echo "This script is under development. Please report issues at"
8
- echo "https://github.com/kevgo/run-that-app/issues"
9
+ version=$1
+ name=$2
+ echo "Installing run-that-app $version as $name ..."
10
}
11
12
VERSION="0.33.0" # the default version of run-that-app to download
@@ -31,7 +29,7 @@ main() {
31
29
esac
32
30
done
33
34
- print_welcome
+ print_welcome "$VERSION" "$DEST_FILENAME"
35
36
need_cmd uname
37
need_cmd curl
0 commit comments