11 lines
162 B
Bash
11 lines
162 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
|
||
|
yay --noconfirm -Syu \
|
||
|
aliae-bin \
|
||
|
;
|
||
|
|
||
|
. "../../../Common/Config/aliae/install.sh";
|
||
|
|
||
|
popd > /dev/null;
|