* Initial plan * Consolidate mise tools installation and fix GitHub Copilot CLI package Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> * Revert copilot package changes and remove --jobs flag from mise install Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> * fix: permissions * Move GitHub CLI (gh) installation to mise Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> Co-authored-by: Andrejus <git@andrejus.uk>
25 lines
494 B
Bash
Executable File
25 lines
494 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Description:
|
|
# (distros with pacman only) Install core pacman packages.
|
|
#
|
|
|
|
# pacman only
|
|
[[ "$DOTS_PKG" != "pacman" ]] && { log_warn "Skipping: Not using pacman"; return 0; }
|
|
|
|
pacman_packages=(
|
|
ca-certificates
|
|
curl
|
|
gnupg
|
|
wget
|
|
base-devel
|
|
)
|
|
|
|
sudo pacman -Sy --noconfirm
|
|
sudo pacman -S --noconfirm --needed "${pacman_packages[@]}"
|
|
|
|
unset pacman_packages
|
|
|
|
pacman --version
|