File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 11#
22# GNU 'make' file
33#
4+ SHELL = /bin/bash
45
56# Change to your own Apple Developer ID, if you want to code-sign the resultant .app
67
@@ -93,8 +94,14 @@ $(LOCAL)/$(VENV_NAME):
9394# start a sub-shell in that venv, with a CWD in the contained python-slip39 installation
9495$(LOCAL ) /$(VENV_NAME ) -activate : $(LOCAL ) /$(VENV_NAME )
9596 @echo; echo " *** Activating $@ VirtualEnv"
96- [ -s $< /start ] || echo " . $</bin/activate; cd $</$( GHUB_NAME) " > $< /venv-activate.sh
97- bash --init-file $< /venv-activate.sh -i
97+ @[ -s $< /venv-activate.sh ] || ( \
98+ echo " PS1='[\u@\h \W)]\\ $$ '" ; \
99+ echo " [ ! -r ~/.git-completion.bash ] || source ~/.git-completion.bash" ; \
100+ echo " [ ! -r ~/.git-prompt.sh ] || source ~/.git-prompt.sh && PS1='[\u@\h \W\$ $( __git_ps1 \" (%s)\" ) ]\\ $$ '" ; \
101+ echo " source $</bin/activate" ; \
102+ echo " cd $</$( GHUB_NAME) " ; \
103+ ) > $< /venv-activate.sh
104+ @bash --init-file $< /venv-activate.sh -i
98105
99106
100107wheel : dist/slip39-$(VERSION ) -py3-none-any.whl
You can’t perform that action at this time.
0 commit comments