mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
7 lines
165 B
Bash
Executable file
7 lines
165 B
Bash
Executable file
#!/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
|