From bfa80c120e3f1a8650449a515ae292b0b6dc874f Mon Sep 17 00:00:00 2001 From: Christopher Date: Thu, 14 Mar 2024 08:05:19 -0500 Subject: [PATCH] Update config file location in run.sh script for Romm --- generate-romm-config/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generate-romm-config/run.sh b/generate-romm-config/run.sh index 190bb63..7aad7ce 100644 --- a/generate-romm-config/run.sh +++ b/generate-romm-config/run.sh @@ -1,11 +1,11 @@ #!/bin/bash # Ask the user for the desired config location -read -p "Enter the location to save the config (default: /DATA/AppData/big-bear-romm/config.yml): " location +read -p "Enter the location to save the config (default: /DATA/AppData/big-bear-romm/config/config.yml): " location # If the user doesn't provide a location, default to the specified path if [ -z "$location" ]; then - location="/DATA/AppData/big-bear-romm/config.yml" + location="/DATA/AppData/big-bear-romm/config/config.yml" fi # Check if the config file already exists @@ -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/master/Apps/Romm/config.yml" -o "$location" # Confirm to the user echo "Config saved to $location"