* Minor stuff: * Making a file called DISABLE_SUBMODULE_AUTOUPDATE in BuildChecker/ makes it not always run git submodule update. * Added .mypy_cache to .gitignore. * Made default platforms x64 (from Any CPU). * Make git hooks +x.
6 lines
150 B
Bash
Executable File
6 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Just call post-checkout since it does the same thing.
|
|
gitroot=`git rev-parse --show-toplevel`
|
|
bash "$gitroot/.git/hooks/post-checkout"
|