mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-01-24 04:46:41 +00:00
8 lines
153 B
Bash
Executable file
8 lines
153 B
Bash
Executable file
#!/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"
|