Skip to content

Commit

Permalink
Make more shebangs compatible (#30)
Browse files Browse the repository at this point in the history
Several of the tests continue to refer to /usr/bin/python. I don't
know of a way to fix these, as they call python -S and IIRC shebangs
can only include one parameter…
  • Loading branch information
lheckemann authored and andychu committed Aug 9, 2017
1 parent 44b83a5 commit 77b45ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/doc.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Usage:
# ./run.sh <function name>
Expand Down
2 changes: 1 addition & 1 deletion build/quick_ref.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
quick_ref.py
"""
Expand Down

0 comments on commit 77b45ef

Please sign in to comment.