* 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
448 B
Bash
Executable File
25 lines
448 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Description:
|
|
# (distros with apt only) Install core apt packages.
|
|
#
|
|
|
|
# apt only
|
|
[[ "$DOTS_PKG" != "apt" ]] && { log_warn "Skipping: Not using apt"; return 0; }
|
|
|
|
apt_packages=(
|
|
ca-certificates
|
|
curl
|
|
gnupg
|
|
gnupg2
|
|
wget
|
|
)
|
|
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -qq "${apt_packages[@]}"
|
|
|
|
unset apt_packages
|
|
|
|
apt --version
|