From 83f58aa80cf288a41692616852c97eda7ba105ce Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Sun, 25 Apr 2021 22:02:05 +0700 Subject: [PATCH] Show build version without changing main version (#748) --- scripts/update/update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update/update b/scripts/update/update index aa418f7..e807e3c 100755 --- a/scripts/update/update +++ b/scripts/update/update @@ -48,7 +48,7 @@ if [[ "${update_type}" == "repo" ]]; then mv "${repo_path}/info.json" "${repo_path}/info.json.orig" jq \ --arg commit "${commit}" \ - '.version = .version + "-build-" + $commit' \ + '.build = $commit' \ "${repo_path}/info.json.orig" \ > "${repo_path}/info.json"