From 1b8851fdfba0fe6d2da29371c30f1025cdd321d4 Mon Sep 17 00:00:00 2001 From: "xiongdian.me" Date: Sat, 3 Dec 2022 21:15:43 +0800 Subject: [PATCH] hotfix --- 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