mirror of
https://github.com/Jguer/yay.git
synced 2025-11-27 00:06:25 -05: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
|