Skip to content

Instantly share code, notes, and snippets.

@gaboesquivel
Forked from kevinastone/tmp_npm.sh
Last active August 29, 2015 14:26
Show Gist options
  • Save gaboesquivel/632a614ffb3f4561dfb4 to your computer and use it in GitHub Desktop.
Save gaboesquivel/632a614ffb3f4561dfb4 to your computer and use it in GitHub Desktop.
#!/bin/bash
BASE_DIR=${TMPDIR:-/var/tmp}
ORIG_DIR=$PWD
HASH_CMD="md5sum"
DIR_NAME=`echo $PWD | $HASH_CMD | cut -f1 -d " "`
TMP_DIR=$BASE_DIR/$DIR_NAME
mkdir -p $TMP_DIR
pushd $TMP_DIR
ln -sf $ORIG_DIR/package.json
npm $1
# Can't use archive mode cause of the permissions
rsync --recursive --links --times node_modules $ORIG_DIR
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment