Skip to content

Commit

Permalink
Fix more linker usage in AppImage
Browse files Browse the repository at this point in the history
  • Loading branch information
hwittenborn committed Dec 29, 2022
1 parent 1e03f3d commit e8b8b41
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3] - 2022-12-29
### Changed
- Fixed more linker usage in AppImage.

## [0.1.2] - 2022-12-29
### Changed
- Fixed linker usage and missing dependencies in AppImage.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "celeste"
version = "0.1.2"
version = "0.1.3"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion appimage/AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ AppDir:
id: com.hunterwittenborn.Celeste
name: Celeste
icon: com.hunterwittenborn.Celeste
version: 0.1.2
version: 0.1.3
exec: bin/bash
exec_args: '-c "${APPDIR}/usr/bin/celeste-wrapper ${@}"'
apt:
Expand Down
2 changes: 1 addition & 1 deletion appimage/wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ cp "${APPDIR}"/* "${tmpdir}" -r
cd "${tmpdir}"

chmod +x usr/bin/{celeste,rclone}
LD_LIBRARY_PATH="${PWD}/usr/lib" usr/bin/celeste "${@}" || true
LD_LIBRARY_PATH="${PWD}/usr/lib/x86_64-linux-gnu:${PWD}/lib/x86_64-linux-gnu" usr/bin/celeste "${@}" || true

rm "${tmpdir}" -r
2 changes: 1 addition & 1 deletion makedeb/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Hunter Wittenborn <hunter@hunterwittenborn.com>
pkgname=celeste
pkgver=0.1.2
pkgver=0.1.3
pkgrel=1
pkgdesc='GUI file synchronization client that can sync with any cloud provider'
arch=('any')
Expand Down

0 comments on commit e8b8b41

Please sign in to comment.