about summary refs log tree commit diff
path: root/pkgs/development/interpreters/python/2.6
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-08 14:20:05 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-09 12:47:05 +0200
commite3f7dbbac800124baa26317fcf792fe08f140655 (patch)
tree80a159018c9f97a9c60ff440c51ebaad1647d396 /pkgs/development/interpreters/python/2.6
parent2db867eec9f09648cae4c6e4ab8e4eae4cfc98f1 (diff)
downloadnixlib-e3f7dbbac800124baa26317fcf792fe08f140655.tar
nixlib-e3f7dbbac800124baa26317fcf792fe08f140655.tar.gz
nixlib-e3f7dbbac800124baa26317fcf792fe08f140655.tar.bz2
nixlib-e3f7dbbac800124baa26317fcf792fe08f140655.tar.lz
nixlib-e3f7dbbac800124baa26317fcf792fe08f140655.tar.xz
nixlib-e3f7dbbac800124baa26317fcf792fe08f140655.tar.zst
nixlib-e3f7dbbac800124baa26317fcf792fe08f140655.zip
Cleanup: Use += to append to envHooks
Diffstat (limited to 'pkgs/development/interpreters/python/2.6')
-rw-r--r--pkgs/development/interpreters/python/2.6/setup-hook.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/2.6/setup-hook.sh b/pkgs/development/interpreters/python/2.6/setup-hook.sh
index 290525c35713..4caff9c9d846 100644
--- a/pkgs/development/interpreters/python/2.6/setup-hook.sh
+++ b/pkgs/development/interpreters/python/2.6/setup-hook.sh
@@ -12,4 +12,4 @@ toPythonPath() {
     echo $result
 }
 
-envHooks=(${envHooks[@]} addPythonPath)
+envHooks+=(addPythonPath)