🔧 fix(generate-romm-config/run.sh): Update URL to fetch Romm config (#32)

The changes update the URL used to fetch the Romm configuration file. The
previous URL was pointing to an outdated location, so the new URL is
updated to fetch the config from the correct location on the master
branch.
This commit is contained in:
Christopher
2025-02-06 20:25:27 -06:00
committed by GitHub
parent 8564c444fe
commit f143e13de6

View File

@@ -21,7 +21,7 @@ fi
mkdir -p "$(dirname "$location")"
# Download the file from the given URL and save it to the specified location
curl -L "https://raw.githubusercontent.com/bigbeartechworld/big-bear-casaos/master/Apps/Romm/config.yml" -o "$location"
curl -L "https://raw.githubusercontent.com/bigbeartechworld/big-bear-casaos/refs/heads/master/Apps/romm/config.yml" -o "$location"
# Confirm to the user
echo "Config saved to $location"