diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/third_party/google-closure-library/scripts/release | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/third_party/google-closure-library/scripts/release')
-rwxr-xr-x | chromium/third_party/google-closure-library/scripts/release/update_versions.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/chromium/third_party/google-closure-library/scripts/release/update_versions.sh b/chromium/third_party/google-closure-library/scripts/release/update_versions.sh new file mode 100755 index 00000000000..8a6c1f1e52e --- /dev/null +++ b/chromium/third_party/google-closure-library/scripts/release/update_versions.sh @@ -0,0 +1,32 @@ +#!/bin/bash +# +# Copyright 2018 The Closure Library Authors. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS-IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Updates the versions of Closure's packages for release. Run this before npm +# publish. + +if [[ -z "$1" ]]; then + echo "Usage: $0 <version>" + exit 1 +fi + +perl -pi -e "s/\"version\": \"v?[\d.]+\"/\"version\": \"$1\"/" \ + package.json +perl -pi -e "s/\"version\": \"v?[\d.]+\"/\"version\": \"$1\"/" \ + closure-deps/package.json +perl -pi -e 's/"google-closure-compiler": ".*"/"google-closure-compiler": "\^'"$1"'"/' \ + closure-deps/package.json +perl -pi -e 's/"google-closure-library": ".*"/"google-closure-library": "\^'"$1"'"/' \ + closure-deps/package.json |