2018-09-11 07:45:14 +00:00
|
|
|
SSH_CONF=Embrevade
|
|
|
|
SSH_TARGET_DIR=/var/docker/raw.opytex.org/www/
|
|
|
|
|
2018-12-10 09:09:19 +00:00
|
|
|
SRC_EXCLUDE=--exclude 'Archive' --exclude 'tools/' --exclude "__pycache__" --exclude "config.sh" --exclude "reflections" --exclude "Notes" --exclude "notes" --exclude "venv"
|
2018-09-11 07:45:14 +00:00
|
|
|
GIT_EXCLUDE=--exclude ".git" --exclude ".gitignore" --exclude ".*"
|
|
|
|
|
|
|
|
ssh_upload:
|
|
|
|
scp -r $(OUTPUTDIR)/* $(SSH_CONF):$(SSH_TARGET_DIR)
|
|
|
|
|
|
|
|
rsync_upload:
|
|
|
|
rsync -e "ssh" -P -rvzc --delete $(GIT_EXCLUDE) $(SRC_EXCLUDE) $(CURDIR)/ $(SSH_CONF):$(SSH_TARGET_DIR) --cvs-exclude
|
|
|
|
|
|
|
|
rsync_cleUSB:
|
2018-11-08 19:04:10 +00:00
|
|
|
rsync --progress --modify-window=1 --update --recursive --times --del ./ $(GIT_EXCLUDE) /run/media/lafrite/K1
|
|
|
|
#rsync -av --del ./ $(GIT_EXCLUDE) /run/media/lafrite/CLE32_ext4
|
2018-09-11 07:45:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
.PHONY:
|