Skip to content

Commit

Permalink
Fixing buckw to use default python
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Jan 19, 2018
1 parent 484d7c4 commit 02c148e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buckw
Expand Up @@ -60,7 +60,7 @@ st = os.stat(buck_pex)
os.chmod(buck_pex, st.st_mode | stat.S_IEXEC)

sys.argv.pop(0)
args = ["python2", buck_pex]
args = ["python", buck_pex]
args.extend(sys.argv)
call(args)

0 comments on commit 02c148e

Please sign in to comment.