diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-02-02 14:13:14 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-02-02 14:13:14 +0100 |
commit | f875ad5313b86275c3fd48884063aefb8849235d (patch) | |
tree | 9c7933aacc895ab6a52045abc7fe8fb1dccb6c20 /util/pre-commit.py | |
parent | AStyle pass (diff) | |
download | smolbote-f875ad5313b86275c3fd48884063aefb8849235d.tar.xz |
Added loading bar to status bar
Hovered links now display in status bar
Diffstat (limited to 'util/pre-commit.py')
-rwxr-xr-x | util/pre-commit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/pre-commit.py b/util/pre-commit.py index 9282854..ca1dc35 100755 --- a/util/pre-commit.py +++ b/util/pre-commit.py @@ -7,7 +7,7 @@ import glob import license # stash unstaged files before running test -os.system("git stash -q --keep-index") +#os.system("git stash -q --keep-index") #print("Running pre-commit hook in {0}".format(os.getcwd())) problems = False @@ -28,7 +28,7 @@ if len(astyle.stdout.splitlines()) > 0: print("Run <<astyle --options=astyle.rc --suffix=none src/**/*.cpp src/**/*.h>> to autofix") # restore stash -os.system("git stash pop -q") +#os.system("git stash pop -q") if problems: sys.exit(-1) |