Archive target.
This commit is contained in:
parent
afdd52953d
commit
bfc26a3f40
|
@ -1,6 +1,9 @@
|
||||||
DEPLOY=driftless:/u/j/u/justhsu/public/html-s/teaching/current/cs839
|
HOST=driftless
|
||||||
|
DEPLOY=/u/j/u/justhsu/public/html-s/teaching/current/cs839
|
||||||
# DEPLOY=rockhopper-07.cs.wisc.edu:/u/j/u/justhsu/public/html-s/teaching/current/cs839
|
# DEPLOY=rockhopper-07.cs.wisc.edu:/u/j/u/justhsu/public/html-s/teaching/current/cs839
|
||||||
# DEPLOY=jackknife:/home/justhsu/html/staging/cs839/
|
# DEPLOY=jackknife:/home/justhsu/html/staging/cs839/
|
||||||
|
ARCHIVE=/u/j/u/justhsu/public/html-s/teaching/f18/cs839
|
||||||
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
make assets && mkdocs build
|
make assets && mkdocs build
|
||||||
|
@ -18,4 +21,11 @@ deploy:
|
||||||
make build
|
make build
|
||||||
find . -type d -exec chmod a+rx {} \;
|
find . -type d -exec chmod a+rx {} \;
|
||||||
find . -type f -exec chmod a+r {} \;
|
find . -type f -exec chmod a+r {} \;
|
||||||
rsync -avzp --delete -e ssh ./site/ $(DEPLOY)
|
rsync -avzp --delete -e ssh ./site/ $(HOST):$(DEPLOY)
|
||||||
|
|
||||||
|
archive:
|
||||||
|
make build
|
||||||
|
find . -type d -exec chmod a+rx {} \;
|
||||||
|
find . -type f -exec chmod a+r {} \;
|
||||||
|
ssh $(HOST) mkdir -p $(ARCHIVE)
|
||||||
|
rsync -avzp --delete -e ssh ./site/ $(HOST):$(ARCHIVE)
|
||||||
|
|
Reference in New Issue