summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-09-19 09:53:17 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-09-19 09:53:17 -0400
commitce72763de93a1cd6e607d570b0f64c3afdf8e634 (patch)
tree26583b5e7dd011aef1867a0503a00824c873a840
parent88abc5c61ee6dd35478045c6abe38db180ddd88c (diff)
.profile: use `uname -m` instead of `arch`
-rw-r--r--.profile2
1 files changed, 1 insertions, 1 deletions
diff --git a/.profile b/.profile
index 235d190..c2fbf49 100644
--- a/.profile
+++ b/.profile
@@ -9,7 +9,7 @@ umask 022
## Paths #############################################################
# Unix
-bins=$(echo $HOME/bin $HOME/.local.`arch`/bin $HOME/.local/bin $HOME/.prefix.`arch`/bin $HOME/.prefix/bin $HOME/.gem/ruby/*/bin)
+bins=$(echo $HOME/bin $HOME/.local.`uname -m`/bin $HOME/.local/bin $HOME/.prefix.`uname -m`/bin $HOME/.prefix/bin $HOME/.gem/ruby/*/bin)
for dir in $bins; do
if [ -d "$dir" ]; then
export PATH="$dir:$PATH"