8 lines
79 B
Text
8 lines
79 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e # Abort on failure
|
||
|
|
||
|
git push
|
||
|
make publish
|
||
|
make rsync_upload
|