gana2188 / google-cloud-sdk

Automatically exported from code.google.com/p/google-cloud-sdk
0 stars 0 forks source link

shebangs in executables are inaccurate #39

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When I had activated a Python 3.4 virtualenv I noticed that appcfg.py --help 
showed an unexpected output. When investigating further I noticed that all 
scripts in the Google Cloud SDK as well as the ones in Google AppEngine have 
the following shebang:

    #!/usr/bin/env python

It should be

    #!/usr/bin/env python2

or perhaps even

    #!/usr/bin/env python2.7

Original issue reported on code.google.com by remcohaszing on 27 May 2014 at 11:13