From 94a2e0b6f46b81c52d15356a6a5c49f88144f89b Mon Sep 17 00:00:00 2001 From: tracer Date: Sun, 26 Jan 2020 15:13:19 +0100 Subject: [PATCH] added lsd to installer --- setup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 504fefc..5392da8 100644 --- a/setup.sh +++ b/setup.sh @@ -4,16 +4,18 @@ cp Settings/.zshrc Settings/.vimrc Settings/.zprofile Settings/.gitconfig . if [ $(id -u) -ne 0 ] then - echo "run me as root to copy cdbm to the system" + echo "run me as root to copy cdbm & lsd to the system" else if [ ! -d /usr/local/bin ]; then mkdir -p /usr/local/bin; fi OS=`uname` case "$OS" in Darwin) cp Settings/cdbm/Darwin/cdbm /usr/local/bin + cp Settings/lsd/Darwin/lsd /usr/local/bin ;; Linux) cp Settings/cdbm/Linux/cdbm /usr/local/bin + cp Settings/lsd/Linux/lsd /usr/local/bin ;; *) $OS is not supported