mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-01-04 19:27:30 +00:00
8 lines
166 B
Bash
Executable file
8 lines
166 B
Bash
Executable file
#!/bin/sh
|
|
set -e # exit on failure
|
|
IFS=$(printf '\n\t') # smarter ifs
|
|
|
|
cd "$(dirname "$(realpath "$0")")/bin"
|
|
rm -f "$(echo "$1" | sed 's/arch-//')"
|
|
appdwarf -g "$1"
|