Skip to content

Commit

Permalink
Fix "webUIEnabled" env var name
Browse files Browse the repository at this point in the history
  • Loading branch information
schroda committed Mar 4, 2024
1 parent 5ef31ec commit 207c92e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/startup_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sed -i -r "s/server.socksProxyHost = \"(.*)\" #/server.socksProxyHost = \"${SOCK
sed -i -r "s/server.socksProxyPort = \"(.*)\" #/server.socksProxyPort = \"${SOCKS_PROXY_PORT:-\1}\" #/" /home/suwayomi/.local/share/Tachidesk/server.conf

# webUI
sed -i -r "s/server.webUIEnabled = (.*) #/server.webUIEnabled = ${WEB_UI_EABLED:-\1} #/" /home/suwayomi/.local/share/Tachidesk/server.conf
sed -i -r "s/server.webUIEnabled = (.*) #/server.webUIEnabled = ${WEB_UI_ENABLED:-\1} #/" /home/suwayomi/.local/share/Tachidesk/server.conf
sed -i -r "s/server.webUIFlavor = \"(.*)\" #/server.webUIFlavor = \"${WEB_UI_FLAVOR:-\1}\" #/" /home/suwayomi/.local/share/Tachidesk/server.conf
sed -i -r "s/server.webUIChannel = \"(.*)\" #/server.webUIChannel = \"${WEB_UI_CHANNEL:-\1}\" #/" /home/suwayomi/.local/share/Tachidesk/server.conf
sed -i -r "s/server.webUIUpdateCheckInterval = (.*) #/server.webUIUpdateCheckInterval = ${WEB_UI_UPDATE_INTERVAL:-\1} #/" /home/suwayomi/.local/share/Tachidesk/server.conf
Expand Down

0 comments on commit 207c92e

Please sign in to comment.