From 167a65d82688dd4d02f950d76f2fdce51cb306f8 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 7 Sep 2017 10:39:21 -0400 Subject: [PATCH] util: Fix reporting of git version of klippy code Signed-off-by: Kevin O'Connor --- klippy/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/klippy/util.py b/klippy/util.py index 2e68dcd1..6c9cad6b 100644 --- a/klippy/util.py +++ b/klippy/util.py @@ -54,11 +54,11 @@ def get_cpu_info(): def get_git_version(): # Obtain version info from "git" program - gitdir = os.path.join(sys.path[0], '..', '.git') + gitdir = os.path.join(sys.path[0], '..') if not os.path.exists(gitdir): logging.debug("No '.git' file/directory found") return "?" - prog = "git --git-dir=%s describe --tags --long --dirty" % (gitdir,) + prog = "git -C %s describe --tags --long --dirty" % (gitdir,) try: process = subprocess.Popen(shlex.split(prog), stdout=subprocess.PIPE) output = process.communicate()[0]