Skip to content

Commit 05cd27b

Browse files
committed
trying again, this time checking the python binaries that are included in the .app dir at the end
1 parent 2bb01ab commit 05cd27b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build/mac/buildDmg.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ find /usr/local/bin -type f -name python -exec '{}' --version \;
5353
find /usr/local/bin -type f -name python3 -exec '{}' --version \;
5454
md5 /usr/bin/python*
5555

56-
exit 0
57-
5856
###################
5957
# INSTALL DEPENDS #
6058
###################
@@ -259,6 +257,14 @@ popd
259257
# buildozer should now be able to build our .app file
260258
buildozer osx debug
261259

260+
echo "INFO: list of python binaries in the new .app dir"
261+
find . -type f -name python
262+
find . -type f -name python -exec '{}' --version \;
263+
find . -type f -name python -exec md5 '{}' \;
264+
find . -type f -name python3
265+
find . -type f -name python3 -exec '{}' --version \;
266+
find . -type f -name python3 -exec md5 '{}' \;
267+
262268
############
263269
# THIN APP #
264270
############

0 commit comments

Comments
 (0)