mirror of
https://codeberg.org/angestoepselt/pxe-stack.git
synced 2025-05-24 15:16:16 +00:00
10 lines
No EOL
134 B
Bash
10 lines
No EOL
134 B
Bash
#!/bin/sh
|
|
|
|
if [ "$(ls -A /git)" ]; then
|
|
cd /git
|
|
git pull
|
|
else
|
|
git clone ${GIT_REPO_URL} /git
|
|
fi
|
|
|
|
echo "finished, exit now" |