Skip to content

Commit

Permalink
Debugging win32 bundler.
Browse files Browse the repository at this point in the history
  • Loading branch information
PerryWerneck committed Mar 7, 2024
1 parent e640d29 commit d6fbc75
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
replacesArtifacts: true
- name: Make bundle
run: |
./autogen.sh
./win/bundle.msys --nsi --zip
find . -iname '*.exe'
find . -iname '*.zip'
Expand Down
24 changes: 24 additions & 0 deletions win/bundle.msys
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,30 @@ do
fi
done

argument "build" > /dev/null
if [ "$?" == "0" ]; then

NOCONFIGURE=1 ./autogen.sh
if [ "$?" != "0" ]; then
echo "Configure failed"
exit -1
fi

./configure
if [ "$?" != "0" ]; then
echo "Configure failed"
exit -1
fi

build_package

else

packages="${packages} pw3270"

fi


install_gtk3_runtime
make_packages

Expand Down

0 comments on commit d6fbc75

Please sign in to comment.