Open DannyDannyDanny opened 5 years ago
I use pipenv for python environment management and the following start script:
pipenv
cd path/to/project pipenv shell git status
Stop script
exit
pipenv shell
git status
prm stop
Here I use:
prm start
cd
no active project
My setup
I use
pipenv
for python environment management and the following start script:Stop script
pipenv shell
, which spawns a shell and places the terminal "inside that shell".git status
doesn't run until I leave the shell usingexit
prm stop
as intendedDemonstration
Here I use:
prm start
- notecd
executes and we are placed inside pipenv shell. Can be seen from (AIMAS) on left hand sideprm stop
- prm saysno active project
becauseprm start
hasn't finished executingexit
- I use exit to leave the shell thegit status
executes