Change:Debian installer

This commit is contained in:
advplyr 2021-12-14 19:28:20 -06:00
parent 7f32100ea5
commit 91018e3c9b
2 changed files with 1 additions and 23 deletions

View File

@ -1,5 +1,5 @@
Package: audiobookshelf
Version: 1.2.1
Version: 1.6.41
Section: base
Priority: optional
Architecture: amd64

View File

@ -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."