Skip to content

Commit

Permalink
Bugfix - makefile was not creating twcmanager home directory by defau…
Browse files Browse the repository at this point in the history
…lt - causes issue for one-click upgrade routine
  • Loading branch information
ngardiner committed Mar 12, 2024
1 parent be26df4 commit a628302
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ webbuild: webdeps build_pkg

config:
# Create twcmanager user and group
$(SUDO) useradd -U -M $(USER) 2>/dev/null; exit 0
$(SUDO) useradd -U -m $(USER) 2>/dev/null; exit 0
$(SUDO) usermod -a -G dialout $(USER)

# Create configuration directory
Expand Down
4 changes: 4 additions & 0 deletions lib/TWCManager/Control/themes/Default/upgradePrompt.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@ If you're sure that you would like to continue, please click the link below:
or
<a href="/">Cancel Upgrade</a>
</p>

<p>
<b>Note:</b> it is normal for your browser to not immediately show output on clicking the Upgrade button above.
</p>

0 comments on commit a628302

Please sign in to comment.