mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 00:32:24 +00:00
9 lines
321 B
Bash
9 lines
321 B
Bash
# Push buildall and postpush to postpush server
|
|
|
|
set -x
|
|
for f in postpush.pl buildall.pl build-oberon.sh; do
|
|
scp -P 5922 $f root@www:/var/lib/nethserver/ibay/githubhook/$f
|
|
ssh -p 5922 root@www "chmod +x /var/lib/nethserver/ibay/githubhook/$f"
|
|
done;
|
|
ssh -p 5922 root@www "ls -lap /var/lib/nethserver/ibay/githubhook"
|
|
|