diff --git a/build/debian/DEBIAN/control b/build/debian/DEBIAN/control index a223602a..7b2b7d30 100644 --- a/build/debian/DEBIAN/control +++ b/build/debian/DEBIAN/control @@ -1,5 +1,5 @@ Package: audiobookshelf -Version: 1.2.1 +Version: 1.6.41 Section: base Priority: optional Architecture: amd64 diff --git a/build/debian/DEBIAN/preinst b/build/debian/DEBIAN/preinst index 1469cbf8..3a2e271d 100644 --- a/build/debian/DEBIAN/preinst +++ b/build/debian/DEBIAN/preinst @@ -94,28 +94,6 @@ setup_config_interactive() { fi } -should_build_config() { - if [ -f "$CONFIG_PATH" ]; then - echo "You already have a config file. Do you want to use it?" - - options=("Yes" "No") - select yn in "${options[@]}" - do - case $yn in - "Yes") - false; return - ;; - "No") - true; return - ;; - esac - done - else - echo "No existing config found in $CONFIG_PATH" - true; return - fi -} - setup_config() { if [ -f "$CONFIG_PATH" ]; then echo "Existing config found."