From: Nirbheek Chauhan Date: Tue, 2 Oct 2018 08:09:49 +0000 (+0530) Subject: git-update: Get the revision of the right repository X-Git-Tag: 1.19.3~481^2~290 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a75371b8b727ab91d4e966ecce6cc4cf32cf944;p=platform%2Fupstream%2Fgstreamer.git git-update: Get the revision of the right repository Typo, should fix the gst-build CI failures. --- diff --git a/git-update b/git-update index 7285dfb..c949ffd 100755 --- a/git-update +++ b/git-update @@ -41,7 +41,7 @@ def update_subprojects(manifest, no_interaction=False): # that will always fail. ret = git('-C', repo_dir, 'rev-parse', '--symbolic-full-name', 'HEAD') if ret.strip() == 'HEAD': - revision = git('rev-parse', 'HEAD').strip() + revision = git('-C', repo_dir, 'rev-parse', 'HEAD').strip() if not update_repo(repo_name, repo_dir, revision, no_interaction): return False