From 5e0a9c2dde11039e0899debe141f145a606bd84a Mon Sep 17 00:00:00 2001 From: Christopher Date: Thu, 15 May 2025 15:54:29 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20fix:=20update=20config=20file=20ext?= =?UTF-8?q?ension=20from=20.yml=20to=20.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change default config file path and download URL to use .yaml extension instead of .yml. This ensures consistency with the upstream file and prevents potential file not found errors. --- generate-file-browser-quantum-config/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"