Justfile: dirty_upload
This commit is contained in:
parent
f69531b8e2
commit
ee2de3a81b
1 changed files with 3 additions and 2 deletions
5
Justfile
5
Justfile
|
@ -16,7 +16,8 @@ refresh_feeds: (run './tool refresh_feeds')
|
||||||
clean:
|
clean:
|
||||||
if [ ! -z "$(git status --porcelain)" ]; then echo "not clean!"; exit 1; fi
|
if [ ! -z "$(git status --porcelain)" ]; then echo "not clean!"; exit 1; fi
|
||||||
|
|
||||||
ready_to_upload: check refresh_feeds build
|
ready_to_upload: check refresh_feeds
|
||||||
upload: clean ready_to_upload
|
upload: clean ready_to_upload _dirty_upload
|
||||||
|
_dirty_upload: build
|
||||||
rsync --rsh='ssh -p443' --recursive --chmod=644 build/ root@nulo.ar:/var/www/nulo.ar/
|
rsync --rsh='ssh -p443' --recursive --chmod=644 build/ root@nulo.ar:/var/www/nulo.ar/
|
||||||
|
|
||||||
|
|
Reference in a new issue