summaryrefslogtreecommitdiff
path: root/.shenv
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2015-02-19 20:48:57 +0900
committerSean Whitton <spwhitton@spwhitton.name>2015-02-19 20:48:57 +0900
commit2469f5031febcf59ed879afaf003bce8578b8c82 (patch)
treeecd1450ba79b066383c28fd6e3847f04d951b138 /.shenv
parent9297c3336e8d03dfed6feddfc6f9fc99697f89c8 (diff)
downloaddotfiles-2469f5031febcf59ed879afaf003bce8578b8c82.tar.gz
avoid .shenv adding cabal packages to path more than once
Diffstat (limited to '.shenv')
-rwxr-xr-x.shenv2
1 files changed, 1 insertions, 1 deletions
diff --git a/.shenv b/.shenv
index e914bfa5..31e09094 100755
--- a/.shenv
+++ b/.shenv
@@ -57,7 +57,7 @@ addition="/meta/s/spw/local/src/git-annex.linux"; maybe_add_to_path
# now add places where there might be an exe made by cabal-install
for bindir in $(find ~/local/src -path "*/.cabal-sandbox/bin"); do
- PATH="$bindir:$PATH"
+ addition="$bindir"; maybe_add_to_path
done
unset addition