Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update toltecctl to fix uninstalling error #740

Merged
merged 5 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package/toltec-bootstrap/package
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
pkgnames=(toltec-bootstrap)
pkgdesc="Manage your Toltec install"
url=https://toltec-dev.org/
pkgver=0.2.2-1
timestamp=2022-02-28T00:12Z
pkgver=0.2.3-1
timestamp=2023-09-17T17:35Z
section="utils"
maintainer="Eeems <[email protected]>"
license=MIT
Expand Down
2 changes: 1 addition & 1 deletion package/toltec-bootstrap/toltecctl
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ reinstall-root() {
# temporarily
set +u
if [[ ${#reinstall_packages[@]} -ne 0 ]]; then
opkg install --force-reinstall --force-remove "${!reinstall_packages[@]}"
opkg install --force-reinstall --force-removal-of-essential-packages --force-remove "${!reinstall_packages[@]}"
else
echo "No package needs to be reinstalled"
fi
Expand Down