This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# On macOS, anything you download via the web gets flagged as quarantined, which causes error dialogs when executing programs or loading libraries from quarantined directories. | |
# This script removes the quarantine flag from the whole compiler directory and its contents. | |
SCRIPT_DIR=`cd "$(dirname "$0")" >/dev/null 2>&1 && pwd` | |
echo "De-quarantining $SCRIPT_DIR" | |
xattr -dr com.apple.quarantine "$SCRIPT_DIR" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "npmgit", | |
"version": "0.1.0", | |
"description": "Show that git dependencies are reinstalled on every `npm install.", | |
"dependencies": { | |
"bunyan": "^1.3.4", | |
"restify": "git+ssh://[email protected]:mcavage/node-restify.git#3.0.0" | |
} | |
} |