From 67a748ad256435ea8c6fa5d8298775267f4882f4 Mon Sep 17 00:00:00 2001 From: "Chanwut (Mick) Kittivorawong" <30903997+chanwutk@users.noreply.github.com> Date: Thu, 3 Nov 2022 17:17:57 -0700 Subject: [PATCH] Update setup.sh --- setup.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.sh b/setup.sh index a1c33c6..c721c25 100644 --- a/setup.sh +++ b/setup.sh @@ -1,9 +1,11 @@ #!/bin/bash -mkdir -p ~/.installs +INSTALL_DIR='$HOME/.installs' -TMUX_DIR='~/.installs/tmux-config' -echo 'install tmux-config in $TMUX_DIR' +mkdir -p $INSTALL_DIR + +TMUX_DIR='$INSTALL_DIR/tmux-config' +echo 'installing tmux-config in $TMUX_DIR' git clone git@github.com:chanwutk/tmux-config.git $TMUX_DIR