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