mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
ed7d455a43
This updates all references to chromiumos/platform/crosvm to crosvm/crosvm. It will also switch ./tools/cl to upload to the new main repository. BUG=None TEST=None Change-Id: I1f71e5d5de2300e57ace1315cb4553f68533d576 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3760903 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: Dennis Kempin <denniskempin@google.com>
15 lines
461 B
Bash
Executable file
15 lines
461 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright 2022 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.
|
|
|
|
echo "WARNING!"
|
|
echo ""
|
|
echo "Do not submit changes to this repository directly. Please submit changes upstream"
|
|
echo "to https://chromium.googlesource.com/crosvm/crosvm"
|
|
echo ""
|
|
echo "Use './tools/cl upload' instead of repo upload to do so."
|
|
echo ""
|
|
echo "WARNING!"
|
|
|
|
exit 1
|