diff --git a/bash_completion b/bash_completion index bc9988aace..0ff38e456d 100644 --- a/bash_completion +++ b/bash_completion @@ -133,7 +133,7 @@ _autotest_complete() { # TODO(petkov): Currently, this assumes that the command is the first # argument. In practice, the command is the first non-flag # argument. I.e., this should be fixed to support something like -# "./cros_workon --all list". +# "cros_workon --all list". _complete_cros_workon_command() { [ ${COMP_CWORD} -eq 1 ] || return 1 local command="${COMP_WORDS[1]}" diff --git a/bin/cros_workon_make b/bin/cros_workon_make index b4fa489a17..a0599f0402 100755 --- a/bin/cros_workon_make +++ b/bin/cros_workon_make @@ -71,7 +71,7 @@ workpath= if ! pkgfile=$("${EQUERYCMD}" which "${workon_name}" 2> /dev/null); then if ACCEPT_KEYWORDS="~${BOARD_KEYWORD}" "${EQUERYCMD}" which "${workon_name}" \ > /dev/null 2>&1; then - die "run './cros_workon --board ${BOARD_STR} start ${1}' first!" 1>&2 + die "run 'cros_workon --board ${BOARD_STR} start ${1}' first!" 1>&2 fi die "error looking up package $1" fi