Skip to content

Commit

Permalink
Merge pull request #133 from JonathanTreffler/fix-vanilla-install
Browse files Browse the repository at this point in the history
fix: vanilla install
  • Loading branch information
Thomas authored Feb 25, 2024
2 parents faba10e + 0674d7c commit 649caa8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 1.7.2 - 2024-02-23
## 1.7.2 - 2024-02-24

### Changed
- Install and update Backblaze in the background
- Update known-good Backblaze version to 9.0.1.767
- Update Backblaze in the background
- Mark ubuntu18 tag as "End of Life" and remove ubuntu18 specific troubleshooting from readme

## 1.7.1 - 2024-02-15
Expand Down
4 changes: 2 additions & 2 deletions PINNED_BZ_VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
9.0.1.763
https://web.archive.org/web/20240126203244/https://secure.backblaze.com/win32/install_backblaze.exe
9.0.1.767
https://web.archive.org/web/20240224185620/https://secure.backblaze.com/win32/install_backblaze.exe
6 changes: 5 additions & 1 deletion startapp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ fetch_and_install() {
curl -A "$custom_user_agent" -L "$pinned_bz_version_url" --output "install_backblaze.exe" || handle_error "INSTALLER: error downloading from $pinned_bz_version_url"
fi
log_message "INSTALLER: Starting install_backblaze.exe"
WINEARCH="$WINEARCH" WINEPREFIX="$WINEPREFIX" wine64 "install_backblaze.exe" -nogui || handle_error "INSTALLER: Failed to install Backblaze"
if [ -f "${WINEPREFIX}drive_c/Program Files (x86)/Backblaze/bzbui.exe" ]; then
WINEARCH="$WINEARCH" WINEPREFIX="$WINEPREFIX" wine64 "install_backblaze.exe" -nogui || handle_error "INSTALLER: Failed to install Backblaze"
else
WINEARCH="$WINEARCH" WINEPREFIX="$WINEPREFIX" wine64 "install_backblaze.exe" || handle_error "INSTALLER: Failed to install Backblaze"
fi

}

Expand Down

0 comments on commit 649caa8

Please sign in to comment.