summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-01-18 17:59:09 +0100
committerFlorian Pritz <bluewind@xinu.at>2012-01-18 17:59:09 +0100
commitc04249919d3fb18bb1bf6895fdad80002c17b7ea (patch)
treecd47d2df889026d35ac060f465f12967b51209d9 /.zshrc
parentdec8740d3d09ffbd9930c9fa94c67efd5c8a2d70 (diff)
downloaddotfiles-c04249919d3fb18bb1bf6895fdad80002c17b7ea.tar.gz
dotfiles-c04249919d3fb18bb1bf6895fdad80002c17b7ea.tar.xz
zshrc: add 64mls chroot alias; use /var/empty when creating chroot
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc
index 9040df4..00565ca 100644
--- a/.zshrc
+++ b/.zshrc
@@ -396,6 +396,7 @@ __chrootalias() {
64s) chroot=staging-x86_64;;
64ml) chroot=multilib-x86_64;;
64mlt) chroot=multilib-testing-x86_64;;
+ 64mls) chroot=multilib-staging-x86_64;;
esac
;;
*)
@@ -419,7 +420,7 @@ __chrootalias() {
esac
(
unfunction chpwd
- cd /
+ cd /var/empty
sudo ${chroot_cmd}-build -r "$__CHROOTS" || true
)
fi