Skip to content
Snippets Groups Projects
Commit f5489337 authored by Marcus M. Darden's avatar Marcus M. Darden
Browse files

Fix the mkdir bug in sync2caen

Prior to this change, the parent directory wasn't created and only
created leaf directories.
parent 2746639c
No related branches found
No related tags found
No related merge requests found
......@@ -167,15 +167,16 @@ fullsubmit: identifier $(FULL_SUBMITFILE)
sync2caen: REMOTE_PATH := ${REMOTE_BASEDIR}/$(notdir $(shell pwd))
sync2caen:
ssh login.engin.umich.edu "mkdir -p '${REMOTE_PATH}'"
# Synchronize local files into target directory on CAEN
rsync \
-av \
--delete \
--exclude '.git*' \
--exclude '.vs*' \
--filter=":- .gitignore" \
--filter=":- .gitignore" \
./ \
"login.engin.umich.edu:'${REMOTE_PATH}'/"
"login.engin.umich.edu:'${REMOTE_PATH}/'"
define MAKEFILE_HELP
EECS281 Advanced Makefile Help
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment