initial commit
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ "$EUID" -ne 0 ]; then
|
||||
echo "Must run as root!"
|
||||
exit
|
||||
fi
|
||||
|
||||
echo "====> Downloading official packages"
|
||||
echo
|
||||
# --noconfirm selects all packages from groups
|
||||
pacman -Sy --needed $(<packages-official.txt)
|
||||
Reference in New Issue
Block a user