This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# cleanup of local repository | |
set -e | |
echo "*** Listing branches already merged to develop *** \n" | |
git checkout develop > /dev/null 2>&1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# first off, install py2app package. | |
# docs --> https://py2app.readthedocs.io/en/latest/install.html#installing-with-pip | |
pip3 install -U py2app | |
# then go to python project's root directory, and run py2applet --make-install command: | |
py2applet --make-install script.py | |
# the above command will generate a setup.py file, we must edit it in case we were using |