Skip to content

Commit dcc9697

Browse files
committed
Fix build directory pruning.
Reviewed in http://codereview.appspot.com/6492053/
1 parent 73774c5 commit dcc9697

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎tools/gae-zip-creator.sh‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ ${ENV_PATH}/bin/pip install -b ${BUILD_PATH} -t ${LIB_PATH} . >> ${LOG_PATH}
4141

4242
# Prune the things we don't want.
4343
echo "Pruning target library"
44-
find ${TARGET_PATH} -name "*.pyc" -exec rm {} \; >> ${LOG_PATH}
45-
rm -rf ${TARGET_PATH}/*.egg-info >> ${LOG_PATH}
44+
find ${LIB_PATH} -name "*.pyc" -exec rm {} \; >> ${LOG_PATH}
45+
rm -rf ${LIB_PATH}/*.egg-info >> ${LOG_PATH}
4646

4747
# Create the zip.
4848
echo "Creating zip"

0 commit comments

Comments
 (0)