mirror of
https://github.com/newnius/YAO-Dockerfiles.git
synced 2025-06-06 07:51:54 +00:00
26 lines
441 B
Bash
Executable File
26 lines
441 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! [[ -z "${repo}" ]]; then
|
|
if [[ -z "${branch}" ]]; then
|
|
git clone $repo /workspace
|
|
else
|
|
git clone -b $branch $repo /workspace
|
|
fi
|
|
fi
|
|
|
|
if [ -d /workspace ]; then
|
|
cd /workspace
|
|
fi
|
|
|
|
#sleep infinity
|
|
|
|
# use eval because commands likes `key=value command` would cause file not found error when using $@, but this eval will ruin current environment
|
|
eval $@
|
|
|
|
code=$?
|
|
|
|
# persist output
|
|
python /etc/save.py
|
|
|
|
exit $code
|