From 8bf60df5a2895b18f78000d9c3e55fb7e4965241 Mon Sep 17 00:00:00 2001 From: David Dollar Date: Thu, 12 Jan 2012 17:21:41 -0800 Subject: [PATCH] debug --- bin/compile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/compile b/bin/compile index 6d1669e5e..a3ae28b5d 100755 --- a/bin/compile +++ b/bin/compile @@ -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