]> spindle.queued.net Git - midori/commitdiff
Only add the git hash to the version if it's not empty
authorChristian Dywan <christian@twotoasts.de>
Mon, 23 Feb 2009 00:03:59 +0000 (01:03 +0100)
committerChristian Dywan <christian@twotoasts.de>
Mon, 23 Feb 2009 00:03:59 +0000 (01:03 +0100)
wscript

diff --git a/wscript b/wscript
index 2c0c4276b3a523e6d91095b3ad9815c7ab660b7f..3789ce848d95fe7b9956a7dafb3305409f85d29d 100644 (file)
--- a/wscript
+++ b/wscript
@@ -29,7 +29,8 @@ VERSION = str (major) + '.' + str (minor) + '.' + str (micro)
 
 try:
     git = Utils.cmd_output (['git', 'rev-parse', '--short', 'HEAD'], silent=True)
-    VERSION = (VERSION + '-' + git).strip ()
+    if git:
+        VERSION = (VERSION + '-' + git).strip ()
 except:
     pass