Skip to content

Commit d0f682b

Browse files
committed
Use bash in top-level scripts. (git on Windows provides MinGW bash.)
This allows user to set PYTHON_EXECUTABLE based on their environment. NO_JIRA
1 parent 5d73126 commit d0f682b

7 files changed

+81
-38
lines changed

main/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/__pycache__/

main/commit-msg

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
#!/usr/bin/env python
2-
'''
3-
A hook to check commit massage.
4-
5-
This is currently used to decide if large file should be commited.
6-
7-
'''
8-
9-
import githooks
10-
11-
if __name__ == '__main__':
12-
exit(githooks.commit_msg_hook())
1+
#!/usr/bin/env bash
2+
me=`basename "$0"`
3+
4+
case "$OSTYPE" in
5+
msys)
6+
echo "Running ${me} in MinGW"
7+
PYTHON_EXECUTABLE=python
8+
;;
9+
*)
10+
echo "Running ${me} on linux / mac / unix"
11+
PYTHON_EXECUTABLE=python3
12+
esac
13+
14+
${PYTHON_EXECUTABLE} "${BASH_SOURCE[0]%.*}.py" "$@"

main/commit-msg.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python3
2+
'''
3+
A hook to check commit massage.
4+
5+
This is currently used to decide if large file should be commited.
6+
7+
'''
8+
9+
import githooks
10+
11+
if __name__ == '__main__':
12+
exit(githooks.commit_msg_hook())

main/pre-commit

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
#!/usr/bin/env python
2-
'''
3-
This is a git hook migrated from hg.
4-
5-
Reference:
6-
https://confluence.ccdc.cam.ac.uk/pages/viewpage.action?spaceKey=GIT&title=Hooks
7-
8-
'''
9-
10-
import githooks
11-
12-
if __name__ == '__main__':
13-
exit(githooks.commit_hook())
1+
#!/usr/bin/env bash
2+
me=`basename "$0"`
3+
4+
case "$OSTYPE" in
5+
msys)
6+
echo "Running ${me} in MinGW"
7+
PYTHON_EXECUTABLE=python
8+
;;
9+
*)
10+
echo "Running ${me} on linux / mac / unix"
11+
PYTHON_EXECUTABLE=python3
12+
esac
13+
14+
${PYTHON_EXECUTABLE} "${BASH_SOURCE[0]%.*}.py" "$@"

main/pre-commit.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python3
2+
'''
3+
This is a git hook migrated from hg.
4+
5+
Reference:
6+
https://confluence.ccdc.cam.ac.uk/pages/viewpage.action?spaceKey=GIT&title=Hooks
7+
8+
'''
9+
10+
import githooks
11+
12+
if __name__ == '__main__':
13+
exit(githooks.commit_hook())

main/pre-merge-commit

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
#!/usr/bin/env python
2-
'''
3-
This is a git hook migrated from hg.
4-
5-
Reference:
6-
https://confluence.ccdc.cam.ac.uk/pages/viewpage.action?spaceKey=GIT&title=Hooks
7-
8-
'''
9-
10-
import githooks
11-
12-
if __name__ == '__main__':
13-
exit(githooks.commit_hook(merge=True))
1+
#!/usr/bin/env bash
2+
me=`basename "$0"`
3+
4+
case "$OSTYPE" in
5+
msys)
6+
echo "Running ${me} in MinGW"
7+
PYTHON_EXECUTABLE=python
8+
;;
9+
*)
10+
echo "Running ${me} linux / mac / unix"
11+
PYTHON_EXECUTABLE=python3
12+
esac
13+
14+
${PYTHON_EXECUTABLE} "${BASH_SOURCE[0]%.*}.py" "$@"

main/pre-merge-commit.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python3
2+
'''
3+
This is a git hook migrated from hg.
4+
5+
Reference:
6+
https://confluence.ccdc.cam.ac.uk/pages/viewpage.action?spaceKey=GIT&title=Hooks
7+
8+
'''
9+
10+
import githooks
11+
12+
if __name__ == '__main__':
13+
exit(githooks.commit_hook(merge=True))

0 commit comments

Comments
 (0)