From 661b2a74a4e8293fd9dabcb06a1049be9680b5a1 Mon Sep 17 00:00:00 2001 From: Markus Scheidgen <markus.scheidgen@gmail.com> Date: Mon, 24 Sep 2018 18:58:40 +0200 Subject: [PATCH] Fixed gitinfo generation. --- gui/gitinfo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/gitinfo.sh b/gui/gitinfo.sh index ac26f4d954..3ff76a2839 100755 --- a/gui/gitinfo.sh +++ b/gui/gitinfo.sh @@ -1,2 +1,2 @@ #!/bin/sh -echo \"{ \\\"log\\\": \\\"$(git log -1 --oneline)\\\", \\\"ref\\\": \\\"$(git describe --all)\\\", \\\"version\\\": \\\"$(git describe)\\\" }\" > src/gitinfo.json \ No newline at end of file +echo { \"log\": \"$(git log -1 --oneline)\", \"ref\": \"$(git describe --all)\", \"version\": \"$(git describe)\" } > src/gitinfo.json \ No newline at end of file -- GitLab