From 77a0e56db11ec291b61d3ed9dcd1d1ca3653f3f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Mon, 25 Jun 2018 13:41:42 +0200 Subject: [PATCH] Fix path --- pre-commit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pre-commit b/pre-commit index b71392dc..49be71b5 100755 --- a/pre-commit +++ b/pre-commit @@ -126,7 +126,7 @@ if __name__ == "__main__": os.chdir("code") if call(["node", "node_modules/gulp/bin/gulp.js", "--silent"]): sys.exit(2) - call(["git", "add", "espurna/data/index*"]) - call(["git", "add", "espurna/static/index*"]) + call(["git", "add", "code/espurna/data/index*"]) + call(["git", "add", "code/espurna/static/index*"]) sys.exit(0);