Change out launch approach
This commit is contained in:
parent
1f4584d801
commit
f9707c8d6e
|
@ -25,7 +25,13 @@ function main() {
|
||||||
# End NOTE: Remove if you want to pass file(s) besides directories...
|
# End NOTE: Remove if you want to pass file(s) besides directories...
|
||||||
|
|
||||||
# Collect abs paths and stuff in 'files' array
|
# 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/"
|
cd "/opt/"
|
||||||
python /opt/<change_me>.zip "$@"
|
python /opt/<change_me>.zip "$@"
|
||||||
|
|
Loading…
Reference in New Issue