Skip to content

Commit

Permalink
v9.7 (#7149)
Browse files Browse the repository at this point in the history
- DietPi-Software | Box86/Box64: Resolved an issue where the installation failed because of a false directory removal attempt. Many thanks to @lukaszsobala for fixing this issue: #7149

Co-authored-by: MichaIng <micha@dietpi.com>
  • Loading branch information
lukaszsobala and MichaIng committed Jul 10, 2024
1 parent 276aaac commit 0b6f85e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ v9.7
Enhancements:

Bug fixes:
- DietPi-Software | Box86/Box64: Resolved an issue where the installation failed because of a false directory removal attempt. Many thanks to @lukaszsobala for fixing this issue: https://github.com/MichaIng/DietPi/pull/7149

As always, many smaller code performance and stability improvements, visual and spelling fixes have been done, too much to list all of them here. Check out all code changes of this release on GitHub: https://github.com/MichaIng/DietPi/pull/ADDME

Expand Down
4 changes: 2 additions & 2 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -11085,7 +11085,7 @@ _EOF_

# Cleanup
G_EXEC cd "$G_WORKING_DIR"
G_EXEC rm "box86-${version#v}"
G_EXEC rm -R "box86-${version#v}"

# Reload binfmt if kernel module is available to have i386 binaries executed via box86 automatically from now on
modprobe binfmt_misc 2> /dev/null && G_EXEC systemctl restart systemd-binfmt
Expand Down Expand Up @@ -11142,7 +11142,7 @@ _EOF_

# Cleanup
G_EXEC cd "$G_WORKING_DIR"
G_EXEC rm "box64-${version#v}"
G_EXEC rm -R "box64-${version#v}"

# Reload binfmt if kernel module is available to have x86_64 binaries executed via box64 automatically from now on
modprobe binfmt_misc 2> /dev/null && G_EXEC systemctl restart systemd-binfmt
Expand Down

0 comments on commit 0b6f85e

Please sign in to comment.