File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ # Copyright 2025 The Chromium Authors
4+ # Use of this source code is governed by a BSD-style license that can be
5+ # found in the LICENSE file.
6+
37# This script outputs the current DevTools version (e.g., `v1.0.1509326`) for
48# GitHub Actions to apply as a git tag (see tag.yml).
59
@@ -12,7 +16,7 @@ chrome_version="$(cat DEPS | grep "'chrome'" | head -n1 | sed "s/[^0-9.]//g")"
1216
1317# Find most recent roll of chromium INTO devtools-frontend standalone.
1418# NOTE: this isn't exactly the same as when frontend was rolled into chromium. But.. it shouldn't make a huge difference for these purposes.. :)
15- chromium_commit_position=$( curl " https://chromiumdash.appspot.com/fetch_releases?platform=Mac" --silent | jq --arg chrome_version " $chrome_version " ' .[] | select(.version == $chrome_version).chromium_main_branch_position' )
19+ chromium_commit_position=$( curl " https://chromiumdash.appspot.com/fetch_releases?platform=Linux, Mac" --silent | jq --arg chrome_version " $chrome_version " ' .[] | select(.version == $chrome_version).chromium_main_branch_position' )
1620
1721# verify we have a real number
1822re=' ^[0-9]+$'
You can’t perform that action at this time.
0 commit comments