Cleanup: Use += to append to envHooks

This commit is contained in:
Eelco Dolstra
2014-07-08 14:20:05 +02:00
parent 2db867eec9
commit e3f7dbbac8
33 changed files with 35 additions and 35 deletions

View File

@@ -2,4 +2,4 @@ addNodePath () {
addToSearchPath NODE_PATH $1/lib/node_modules
}
envHooks=(${envHooks[@]} addNodePath)
envHooks+=(addNodePath)