mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
14 lines
203 B
Bash
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
|