Commit 8bf60df5 authored by David Dollar's avatar David Dollar

debug

parent df910758
......@@ -77,6 +77,7 @@ if [ -d $CACHE_STORE_DIR ]; then
# move existing node_modules out of the way
if [ -f $CACHE_TARGET_DIR ]; then
echo "moving out"
mv $CACHE_TARGET_DIR $TEMP_NODE_MODULES_DIR/
fi
......@@ -85,6 +86,7 @@ if [ -d $CACHE_STORE_DIR ]; then
# move existing node_modules back into place
if [ -d $TEMP_NODE_MODULES_DIR/node_modules ]; then
echo "moving back"
cp -R $TEMP_NODE_MODULES_DIR/node_modules/* $CACHE_TARGET_DIR/
fi
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment