WIP new structure

This commit is contained in:
2023-03-27 21:21:28 -05:00
parent df98e21e3c
commit 3e014b1c6d
65 changed files with 1570 additions and 2 deletions

View File

@@ -9,9 +9,15 @@
function main() {
call_path=`pwd`
cd "${call_path}"
echo "Working Dir: " $(pwd)
path=""
if [[ ! "${1::1}" == /* ]]; then
path="${call_path}/${1}"
else
path="${1}"
fi
cd "/opt/"
python /opt/cornea.zip "$@"
}
main "$@";