mirror of
https://github.com/Jguer/yay
synced 2024-10-31 04:12:51 +00:00
13 lines
203 B
Bash
13 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
|