chore(travis): fix typo

This commit is contained in:
Soonho Kong 2013-12-26 02:38:16 -05:00
parent 558c07738c
commit 0efb7e8297
3 changed files with 5 additions and 5 deletions

View file

@ -67,8 +67,8 @@ after_script:
fi;
mkdir ${UPLOAD_DIR};
if [[ $PACKAGE == TRUE ]]; then
cp -v build/*.zip ${UPLOAD_DIR}/;
fi
cp -v build/lean*.zip ${UPLOAD_DIR}/;
fi;
cp -v build/shell/lean ${UPLOAD_DIR}/${BINARY};
tar cvfz ${UPLOAD_DIR}/${ARCHIVE_BINARY}.tar.gz ${UPLOAD_DIR}/${BINARY};
script/dropbox_upload.py --srcpath ${UPLOAD_DIR} --destpath /Public/${UPLOAD_DIR} --dropbox-token ${DROPBOX_KEY};

View file

@ -70,8 +70,8 @@ after_script:
fi;
mkdir ${UPLOAD_DIR};
if [[ $PACKAGE == TRUE ]]; then
cp -v build/*.zip ${UPLOAD_DIR}/;
fi
cp -v build/lean*.zip ${UPLOAD_DIR}/;
fi;
cp build/shell/lean.exe ${UPLOAD_DIR}/${BINARY}.exe;
tar cvfz ${UPLOAD_DIR}/${ARCHIVE_BINARY}.tar.gz ${UPLOAD_DIR}/${BINARY}.exe;
script/dropbox_upload.py --srcpath ${UPLOAD_DIR} --destpath /Public/${UPLOAD_DIR} --dropbox-token ${DROPBOX_KEY};

View file

@ -309,7 +309,7 @@ after_script:
mkdir ${UPLOAD_DIR};
if [[ $LEANREPO == BLESSED && $PACKAGE == TRUE ]]; then
cp -v build/lean*.tar.gz ${UPLOAD_DIR}/;
fi
fi;
cp -v build/shell/lean ${UPLOAD_DIR}/${BINARY};
tar cvfz ${UPLOAD_DIR}/${ARCHIVE_BINARY}.tar.gz ${UPLOAD_DIR}/${BINARY};
script/dropbox_upload.py --srcpath ${UPLOAD_DIR} --destpath /Public/${UPLOAD_DIR} --dropbox-token ${DROPBOX_KEY};