Skip to content

Commit

Permalink
Remove dependency to atspi in case of OpenSuse 15.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-klein committed Nov 16, 2024
1 parent d78bf99 commit 647e8e3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docker/build_opensuseleap.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# This script triggers all the steps necessary for building and packaging Ezra Bible App on Linux.

mkdir -p release/electron-installer-redhat
Expand All @@ -8,6 +8,11 @@ git clone https://github.com/electron-userland/electron-installer-redhat release
# See https://github.com/electron-userland/electron-installer-redhat/commit/0ca95554b2bdacd24da7942f459709df41336972
git -C release/electron-installer-redhat checkout 0ca955

# Remove dependency to atspi in case of OpenSuse 15.6
if grep -q 15.6 "/etc/os-release"; then
sed -i '/atspi/d' release/electron-installer-redhat/src/dependencies.js
fi

npm install --prefix release/electron-installer-redhat

npm run build-linux
Expand Down

0 comments on commit 647e8e3

Please sign in to comment.