fix: update init-next.ps1 to simplify WSL software installation by removing unnecessary flags from yay command, enhancing clarity and efficiency in the setup process
All checks were successful
/ deploy_site (push) Successful in 4s

This commit is contained in:
2025-01-21 09:06:55 +09:00
parent b50628509d
commit 14bdfe8e79

View File

@ -14,7 +14,7 @@ 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 'echo y | LANG=C yay --answerdiff None --answerclean None --mflags "--noconfirm" 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 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 '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'