6 lines
146 B
Bash
6 lines
146 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
yay --noconfirm -Syu firefox;
|
||
|
. "../../../Common/Config/Firefox/install.sh";
|
||
|
popd > /dev/null;
|