Do not fail cogsetup.sh if repo is not in PATH
Change-Id: Id1588ac710963d14edfb485daf2b3b14c857ae69
This commit is contained in:
parent
45c6fd0c17
commit
f3fae6bbc9
1 changed files with 3 additions and 1 deletions
|
@ -52,7 +52,9 @@ function _setup_cog_env() {
|
|||
# it with this function. If the user is running repo within a Cog workspace,
|
||||
# we'll fail with an error, otherwise, we run the original repo command with
|
||||
# the given args.
|
||||
ORIG_REPO_PATH=`which repo`
|
||||
if ! ORIG_REPO_PATH=`which repo`; then
|
||||
return 0
|
||||
fi
|
||||
function repo {
|
||||
if [[ "${PWD}" == /google/cog/* ]]; then
|
||||
echo "\e[01;31mERROR:\e[0mrepo command is disallowed within Cog workspaces."
|
||||
|
|
Loading…
Reference in a new issue