We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e819a commit c8773baCopy full SHA for c8773ba
gh-actions-install-cli.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-[ "$DEBUG" == "true" ] && set -x
+[ "$DEBUG" == "true" ] && set -xv
4
5
version=`gh release view -R upfluence/gh-downloader --json tagName -t '{{.tagName}}'`
6
@@ -10,7 +10,7 @@ force_download=${FORCE_DOWNLOAD:-"false"}
10
11
if [ ! -f "$target_path" ] || [ "$force_download" == "true" ]; then
12
mkdir -p $target_dir
13
- curl -L https://github.com/upfluence/gh-downloader/releases/$version/download/gh-downloader-linux-amd64 > $target_path
+ curl -L https://github.com/upfluence/gh-downloader/releases/download/$version/gh-downloader-linux-amd64 > $target_path
14
chmod +x $target_path
15
fi
16
0 commit comments