Skip to content
Snippets Groups Projects
Commit a0ddb09c authored by Fabian.Jakub's avatar Fabian.Jakub
Browse files

allow for transfer_project to run locally

parent 6ed143d7
No related branches found
No related tags found
No related merge requests found
......@@ -10,5 +10,10 @@ REMOTE_WORKDIR=${WORKDIR}/
PROJ_FOLDER="%PROJDIR%"
# Transfer the project
ssh ${HPCUSER}@${HPCHOST} mkdir -p ${REMOTE_WORKDIR}/proj
rsync -v -u -r --no-relative ${PROJ_FOLDER}/ ${HPCUSER}@${HPCHOST}:${REMOTE_WORKDIR}/proj
if [[ "x$HPCHOST" == "xlocalhost" ]]; then
mkdir -p ${REMOTE_WORKDIR}/proj
rsync -v -u -r --no-relative ${PROJ_FOLDER}/ ${REMOTE_WORKDIR}/proj
else
ssh ${HPCUSER}@${HPCHOST} mkdir -p ${REMOTE_WORKDIR}/proj
rsync -v -u -r --no-relative ${PROJ_FOLDER}/ ${HPCUSER}@${HPCHOST}:${REMOTE_WORKDIR}/proj
fi
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