PortValhalla/archiso/scripts/update.sh

13 lines
233 B
Bash
Executable file

pushd "${BASH_SOURCE%/*}" > /dev/null;
patchFile="$(realpath -m valhalla.patch)";
. ./template-path.sh;
if [ -f "$patchFile" ];
then
pushd .. > /dev/null;
git apply "$patchFile";
popd > /dev/null;
fi;
popd > /dev/null;