added comments

This commit is contained in:
Guillaume Raffy 2020-07-08 15:41:17 +02:00
parent 357f5fd03b
commit 4e79d33d53
1 changed files with 2 additions and 1 deletions

View File

@ -15,5 +15,6 @@ virtualenv ./python.virtualenv
source ./python.virtualenv/bin/activate
pip install pyocclient # installs python owncloud module
python -c "import owncloud; oc = owncloud.Client('https://cloud.ipr.univ-rennes1.fr'); oc.login('graffy','$GRAFFY_OWNCLOUD_JENKINS_PWD'); oc.put_file('lipase/$LIPASE_PACKAGE_FILE_NAME', r'$LIPASE_PACKAGE_FILE_PATH'); oc.put_file('lipase/lipase-manual.pdf', r'$LIPASE_USER_MANUAL_PATH');"
RELEASE_DIR='lipase' # the lipase owncloud directory has been created by gpaboeuf on 08/07/2020, is owned by iprbiomif, and has been shared with graffy, with write access
python -c "import owncloud; oc = owncloud.Client('https://cloud.ipr.univ-rennes1.fr'); oc.login('graffy','$GRAFFY_OWNCLOUD_JENKINS_PWD'); oc.put_file('$RELEASE_DIR/$LIPASE_PACKAGE_FILE_NAME', r'$LIPASE_PACKAGE_FILE_PATH'); oc.put_file('$RELEASE_DIR/lipase-manual.pdf', r'$LIPASE_USER_MANUAL_PATH');"