Skip to content

Commit

Permalink
remove wildcard from cp cmd to pickup hidden lock file in ivy cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbrainard committed Jan 17, 2012
1 parent 72853f7 commit 1cb6b97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ for DIR in $CACHED_DIRS; do
rm -rf $DIR
if [ -d $CACHE_DIR/$DIR ]; then
mkdir -p $DIR
cp -r $CACHE_DIR/$DIR/* $DIR
cp -r $CACHE_DIR/$DIR/ $DIR
fi
done

Expand Down Expand Up @@ -127,5 +127,5 @@ mkdir -p $CACHE_DIR
for DIR in $CACHED_DIRS ; do
rm -rf $CACHE_DIR/$DIR
mkdir -p $CACHE_DIR/$DIR
cp -r $DIR/* $CACHE_DIR/$DIR
cp -r $DIR/ $CACHE_DIR/$DIR
done

0 comments on commit 1cb6b97

Please sign in to comment.