Skip to content

Commit c8773ba

Browse files
gh-actions-install-cli: correct url typo
1 parent 30e819a commit c8773ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gh-actions-install-cli.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
[ "$DEBUG" == "true" ] && set -x
3+
[ "$DEBUG" == "true" ] && set -xv
44

55
version=`gh release view -R upfluence/gh-downloader --json tagName -t '{{.tagName}}'`
66

@@ -10,7 +10,7 @@ force_download=${FORCE_DOWNLOAD:-"false"}
1010

1111
if [ ! -f "$target_path" ] || [ "$force_download" == "true" ]; then
1212
mkdir -p $target_dir
13-
curl -L https://github.com/upfluence/gh-downloader/releases/$version/download/gh-downloader-linux-amd64 > $target_path
13+
curl -L https://github.com/upfluence/gh-downloader/releases/download/$version/gh-downloader-linux-amd64 > $target_path
1414
chmod +x $target_path
1515
fi
1616

0 commit comments

Comments
 (0)