blob: 5d1c13ade4a6fe36c17c2d97b3bc13da775dff7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
# Copyright 2013 The Chromium 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 "*************************************************"
echo "* Do not source cr.sh ***************************"
echo "*************************************************"
echo "* You need to source cr-bash-helpers.sh instead *"
echo "* This file will stop working and be removed *"
echo "* soon. *"
echo "*************************************************"
source $(dirname $(realpath "${BASH_SOURCE:-$0}"))/cr-bash-helpers.sh
|