mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
76e6fd051b
One more fix. Everything seems to work, but the remote is rejecting an update of the active main branch. Hopefully the last fix needed. BUG=b:199692764 TEST=Testing in prod. Change-Id: I4f341cc374080454317cb3ac29cade59fec6aeee Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3229958 Tested-by: Dennis Kempin <denniskempin@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
10 lines
394 B
Bash
Executable file
10 lines
394 B
Bash
Executable file
#!/bin/bash
|
|
# Copyright 2021 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
GITHUB_TOKEN_FILE=$KOKORO_KEYSTORE_DIR/76320_github_token
|
|
TOKEN=$(cat $GITHUB_TOKEN_FILE)
|
|
|
|
cd "${KOKORO_ARTIFACTS_DIR}/git/crosvm"
|
|
git push --force --mirror "https://crosvm-bot:${TOKEN}@github.com/google/crosvm.git"
|