initial push

This commit is contained in:
2024-09-04 00:59:52 -05:00
parent fda3040fc2
commit 033cf5b27d
1764 changed files with 2185 additions and 313 deletions

View File

@@ -11,19 +11,6 @@ function main() {
call_path=`pwd`
path=""
# NOTE: Remove if you want to pass file(s) besides directories...
if [[ ! "${1::1}" == /* ]]; then
path="${call_path}/${1}"
else
path="${1}"
fi
if [ ! -d "${path}" ]; then
echo "<change_me>: Path given not a directory..."
exit 1
fi
# End NOTE: Remove if you want to pass file(s) besides directories...
# Collect abs paths and stuff in 'files' array
files=()
for f in "$@"; do
@@ -34,6 +21,6 @@ function main() {
done
cd "/opt/"
python /opt/<change_me>.zip "$@"
python /opt/lsp-manager.zip "$@"
}
main "$@";