Loading

Paste #pnigmcyyx

  1. $  cd ~/openttd
  2. $  python3 $HOME/git.py --version
  3. What?!
  4.  
  5. $  cd ~/corsix-th
  6. $  python3 $HOME/git.py --version
  7. git version 2.1.0
  8.  
  9. $  cat $HOME/git.py
  10. #!/usr/bin/env python3
  11. import sys, os, subprocess
  12.  
  13. if os.getcwd().startswith('/home/alberth/corsix-th'):
  14.     sys.exit(subprocess.call(['/usr/bin/git'] + sys.argv[1:]))
  15. print("What?!")
  16. sys.exit(1)

Comments