diff --git a/generate-file-browser-quantum-config/run.sh b/generate-file-browser-quantum-config/run.sh index a1b5aae..9435785 100644 --- a/generate-file-browser-quantum-config/run.sh +++ b/generate-file-browser-quantum-config/run.sh @@ -1,11 +1,11 @@ #!/usr/bin/env bash # Ask the user for the desired config location -read -p "Enter the location to save the config (default: /DATA/AppData/big-bear-file-browser-quantum/data/config.yml): " location +read -p "Enter the location to save the config (default: /DATA/AppData/big-bear-file-browser-quantum/data/config.yaml): " location # If the user doesn't provide a location, default to the specified path if [ -z "$location" ]; then - location="/DATA/AppData/big-bear-file-browser-quantum/config.yml" + location="/DATA/AppData/big-bear-file-browser-quantum/config.yaml" 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/refs/heads/master/Apps/file-browser-quantum/data/config.yml" -o "$location" +curl -L "https://raw.githubusercontent.com/bigbeartechworld/big-bear-casaos/refs/heads/master/Apps/file-browser-quantum/data/config.yaml" -o "$location" # Confirm to the user echo "Config saved to $location"