Some checks failed
SimcoDash/simcompanies-dashboard/pipeline/head There was a failure building this commit
10 lines
230 B
Bash
10 lines
230 B
Bash
#!/usr/bin/env sh
|
|
|
|
if test "$1" = "edit-jenkinsfile"
|
|
then
|
|
echo 'Copy backend to OlberryPi'
|
|
scp -r /backend/. simco-jenkins@gitea.oliver.boehlk.io:~/simco-dashboard/backend
|
|
else
|
|
echo "Skipping for non-master branch"
|
|
fi
|