From c3e0c28b6411d522d8784127267a3c26d4a3f94e Mon Sep 17 00:00:00 2001 From: Dict Xiong Date: Sat, 3 Dec 2022 21:27:22 +0800 Subject: [PATCH] [install.sh] hotfix (#33) hotfix Co-authored-by: xiongdian.me --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 6429b2c..9297baa 100755 --- a/install.sh +++ b/install.sh @@ -31,16 +31,16 @@ install_dependencies() fmt_note "installing dependencies ..." case $(get_os_name) in "ubuntu"|"debian" ) - $SUDO DFS_LITE=$DFS_LITE "$DOTFILES/tools/ubuntu.sh" apt-install + $SUDO "$DOTFILES/tools/ubuntu.sh" apt-install ;; "alpine" ) - $SUDO DFS_LITE=$DFS_LITE "$DOTFILES/tools/alpine.sh" apk-add + $SUDO "$DOTFILES/tools/alpine.sh" apk-add ;; "macos" ) - DFS_LITE=$DFS_LITE "$DOTFILES/tools/macos.sh" brew-install + "$DOTFILES/tools/macos.sh" brew-install ;; "msys" ) - DFS_LITE=$DFS_LITE "$DOTFILES/tools/msys2.sh" pacman-S + "$DOTFILES/tools/msys2.sh" pacman-S ;; * ) fmt_error "dfs auto-install is not implemented on OS: $(get_os_name)" esac