[gn] fix minor mistake from f7cb1afa0633 The script printed two `/` when one suffices.
diff --git a/llvm/utils/gn/build/sync_source_lists_from_cmake.py b/llvm/utils/gn/build/sync_source_lists_from_cmake.py index 411f8f7..aada38b 100755 --- a/llvm/utils/gn/build/sync_source_lists_from_cmake.py +++ b/llvm/utils/gn/build/sync_source_lists_from_cmake.py
@@ -123,7 +123,7 @@ # Output necessary changes grouped by revision. for rev in sorted(changes_by_rev): - commit_url = 'https://github.com/llvm/llvm-project/commit/' + commit_url = 'https://github.com/llvm/llvm-project/commit' print("[gn build] Port {0} -- {1}/{0}".format(rev, commit_url)) for gn_file, data in sorted(changes_by_rev[rev].items()): add = data.get("add", [])