mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 22:42:38 +00:00
8 lines
165 B
Text
8 lines
165 B
Text
|
#!/bin/bash
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
echo "ERROR: archlinux has no aclocal-1.4. only $(aclocal --version | head -n 1)"
|
||
|
exit 1
|
||
|
|
||
|
pacman -Syu --noconfirm --needed automake
|