diff options
Diffstat (limited to 'eclass/git-ng.eclass')
| -rw-r--r-- | eclass/git-ng.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/git-ng.eclass b/eclass/git-ng.eclass index 5b64edc0ca9..09eeefd9360 100644 --- a/eclass/git-ng.eclass +++ b/eclass/git-ng.eclass @@ -136,10 +136,10 @@ git-ng_init_variables() { git-ng_submodules() { debug-print-function ${FUNCNAME} "$@" - [[ "$#" -ne 1 ]] && die "${FUNCNAME}: requires 1 argument" + [[ "$#" -ne 1 ]] && die "${FUNCNAME}: requires 1 argument (path)" debug-print "${FUNCNAME}: working in \"${1}\"" - pushd ${1} &> /dev/null + pushd "${1}" &> /dev/null # for submodules operations we need to be online if [[ -z ${ESCM_OFFLINE} && -n ${EGIT_HAS_SUBMODULES} ]]; then |
