From 0b3ae53eecb3b1bb7a529fcd89b5fe4d1f68a72c Mon Sep 17 00:00:00 2001 From: Martinez Date: Tue, 2 Feb 2016 16:35:58 +0100 Subject: [PATCH] fix http-dir fix :-) --- dotfiles/system/etc/zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/system/etc/zsh/zshrc b/dotfiles/system/etc/zsh/zshrc index 0103104..8f3f375 100644 --- a/dotfiles/system/etc/zsh/zshrc +++ b/dotfiles/system/etc/zsh/zshrc @@ -91,7 +91,7 @@ cds() { } http-dir() { - echo "Serving $CWD on 0.0.0.0:55555" + echo "Serving $PWD on 0.0.0.0:55555" /usr/sbin/thttpd -D -d . -p 55555 -l - }