mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 05:26:58 +02:00
BUG=chromium-os:19544 TEST=none Change-Id: I9e516d6b14db63a814c085e4194b6c4c24594a7d Reviewed-on: http://gerrit.chromium.org/gerrit/6521 Tested-by: Zdenek Behan <zbehan@chromium.org> Reviewed-by: Anush Elangovan <anush@chromium.org>
11 lines
320 B
Bash
Executable File
11 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2010 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 "This command is deprecated, please run cros_sdk $*"
|
|
# Run 'gclient' to sync depot_tools. Just in case.
|
|
gclient &> /dev/null
|
|
exit 1
|