mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-10 00:46:30 +00:00
8 lines
153 B
Plaintext
8 lines
153 B
Plaintext
|
#!/bin/sh
|
||
|
set -e # exit on failure
|
||
|
IFS=$(printf '\n\t') # smarter ifs
|
||
|
|
||
|
gh run download -n "$1"
|
||
|
chmod +x "$1"
|
||
|
mv "$1" "$(dirname "$(realpath "$0")")/bin"
|