Change out launch approach

This commit is contained in:
itdominator 2023-10-28 00:52:33 -05:00
parent 1f4584d801
commit f9707c8d6e
1 changed files with 7 additions and 1 deletions

View File

@ -25,7 +25,13 @@ function main() {
# End NOTE: Remove if you want to pass file(s) besides directories...
# Collect abs paths and stuff in 'files' array
mapfile -t files < <(readlink -f "$@")
files=()
for f in "$@"; do
target=$(readlink -f "${f}")
i="${#files[@]}"
size=$(($i + 1))
files[$size]="${target}"
done
cd "/opt/"
python /opt/<change_me>.zip "$@"