yay/testdata/install_test.sh
Jguer 4d83ffb915 Simple test install from local yay
Signed-off-by: Jguer <me@jguer.space>
2018-04-27 02:03:58 +01:00

14 lines
203 B
Bash
Executable file

#!/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