mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-09 08:26:22 +00:00
7 lines
127 B
Bash
Executable file
7 lines
127 B
Bash
Executable file
#!/bin/sh
|
|
set -e # exit on failure
|
|
IFS=$(printf '\n\t') # smarter ifs
|
|
|
|
cd "$(dirname "$(realpath "$0")")/bin"
|
|
appdwarf -g "$1"
|