mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
4d83ffb915
Signed-off-by: Jguer <me@jguer.space>
14 lines
203 B
Bash
Executable File
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
|