diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2024-12-05 13:38:14 -0500 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2024-12-05 13:38:14 -0500 |
| commit | 29b1c791f6e319cdab828cee5f491ca1c38e41d1 (patch) | |
| tree | be9d9d43d150f0b72f72e4e37cc43bde0e10b72e /.local/bin/appify | |
| parent | 5849e2ad7323f086bd6edf221b29e3f0b2b7cbd3 (diff) | |
Some New Configuration Tools
Diffstat (limited to '.local/bin/appify')
| -rwxr-xr-x | .local/bin/appify | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/.local/bin/appify b/.local/bin/appify deleted file mode 100755 index 90fa765..0000000 --- a/.local/bin/appify +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -APPNAME=${2:-$(basename "${1}" '.sh')}; -DIR="${APPNAME}.app/Contents/MacOS"; - -if [ -a "${APPNAME}.app" ]; then - echo "${PWD}/${APPNAME}.app already exists :("; - exit 1; -fi; - -mkdir -p "${DIR}"; -cp "${1}" "${DIR}/${APPNAME}"; -chmod +x "${DIR}/${APPNAME}"; - -echo "${PWD}/$APPNAME.app"; |
