From f875ad5313b86275c3fd48884063aefb8849235d Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Thu, 2 Feb 2017 14:13:14 +0100 Subject: Added loading bar to status bar Hovered links now display in status bar --- util/pre-commit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util') 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 <> to autofix") # restore stash -os.system("git stash pop -q") +#os.system("git stash pop -q") if problems: sys.exit(-1) -- cgit v1.2.1