yay/testdata/install_test.sh
2020-02-29 18:50:33 +01:00

14 lines
203 B
Bash

#!/bin/bash
function error() {
echo "ERROR: $1"
exit 1
}
echo "Start simple"
./yay -S shfmt --noconfirm || error "unable to make shfmt"
./yay -Qsq shfmt || error "unable to install shfmt"
exit 0