From e92c1fe21861ed796c789848e0c52231dbdafa3b Mon Sep 17 00:00:00 2001 From: Minhyeok Park Date: Tue, 21 Jan 2025 10:07:53 +0900 Subject: [PATCH] fix: update init-next.ps1 to improve WSL software installation by specifying individual package installations with yay, ensuring a more controlled and efficient setup process --- init-next.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init-next.ps1 b/init-next.ps1 index 66e8970..cbcbbcc 100644 --- a/init-next.ps1 +++ b/init-next.ps1 @@ -14,7 +14,8 @@ wsl sh -c "printf '[user]\ndefault=pmh' >> /etc/wsl.conf" wsl --shutdown wsl git clone https://aur.archlinux.org/yay.git ~/yay wsl sh -c "cd ~/yay && makepkg -si --noconfirm" -wsl sh -c 'yay fakeroot curl wget vim terraform eksctl kubectl helm jq aws-cli-v2-bin qemu-full docker docker-buildx oh-my-zsh-git zsh-autosuggestions-git zsh-syntax-highlighting-git' +wsl sh -c 'yay -S fakeroot' +wsl sh -c 'yay -Syu curl wget vim terraform eksctl kubectl helm jq aws-cli-v2 qemu-full docker docker-buildx oh-my-zsh-git zsh-autosuggestions-git zsh-syntax-highlighting-git' wsl sh -c 'source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh >> ~/.zshrc' wsl sh -c 'source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh >> ~/.zshrc' wsl sh -c 'curl https://raw.githubusercontent.com/pmh-only/cocktail-bar/refs/heads/main/_qkstart/scripts/install/alias.sh | sh'