Skip to content

Commit

Permalink
fixed: no previous patch file error created in v8.15
Browse files Browse the repository at this point in the history
  • Loading branch information
kwindrem committed Aug 21, 2024
1 parent c59ff5b commit 83888cf
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions HelperResources/CommonResources
Original file line number Diff line number Diff line change
Expand Up @@ -1434,6 +1434,11 @@ getFileLists "$pkgFileSets"
# tempFileDir is removed in the exit trap above but it is in volatile storage so will be removed on boot anyway
tempFileDir=$( mktemp -d )

# patch files previously used to patch a file are stored in /etc/venus
# so they track the selected root fs and are erased when Venus OS is updated
previousPatchesRoot="/etc/venus/previousPatches"
previousPatchesDir="$previousPatchesRoot/$packageName"

# do install pre-checks - skip if uninstalling
if [ $scriptAction != 'UNINSTALL' ]; then

Expand Down Expand Up @@ -1668,8 +1673,6 @@ updateRootToReadWrite

# patch files previously used to patch a file are stored in /etc/venus
# so they track the selected root fs and are erased when Venus OS is updated
previousPatchesRoot="/etc/venus/previousPatches"
previousPatchesDir="$previousPatchesRoot/$packageName"
if ! [ -e "$previousPatchesDir" ]; then
mkdir -p "$previousPatchesDir"
fi
Expand Down
2 changes: 1 addition & 1 deletion blindInstall/SetupHelperVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.15
v8.16
3 changes: 3 additions & 0 deletions changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v8.16:
fixed: no previous patch file error created in v8.15

v8.15:
fixed: GUI restart doesn't always occur after install
fixed: previouis patches file creation fails on first install
Expand Down
Binary file modified venus-data-UninstallPackages.tgz
Binary file not shown.
Binary file modified venus-data.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v8.15
v8.16

0 comments on commit 83888cf

Please sign in to comment.