This commit is contained in:
2017-11-03 22:17:59 -04:00
parent 61fa7abbf2
commit 1abdf8a16f
1 changed files with 3 additions and 7 deletions

View File

@ -37,13 +37,9 @@ cat > /etc/pacman.d/mirrorlist <<-`EOM05594313219813`
Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch Server = http://mirror.math.princeton.edu/pub/archlinux/$repo/os/$arch
`EOM05594313219813` `EOM05594313219813`
# Do an update to make sure all is, well, updated! # Do an update and install some packages.
echo "----> Updating" echo "----> Updating and installing base-devel, git, htop, vim, and cowsay"
pacman -Syu --noconfirm pacman -Syu base-devel git htop vim cowsay --noconfirm
# Install git and base-devel which includes gcc and jazz.
echo "----> Installing base-devel, git, htop, vim, and cowsay"
pacman -S base-devel git htop vim cowsay --noconfirm
# Disable root check for makepkg since we are using root for everything. # Disable root check for makepkg since we are using root for everything.
# Replace the "if (( EUID == 0 )); then" with "if (( 0 )); then" to force root # Replace the "if (( EUID == 0 )); then" with "if (( 0 )); then" to force root