diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-09-21 15:17:46 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-09-21 15:17:46 -0400 |
commit | 745d32b1aa0b36ed74b8a34ff4d6843b51f7b9f0 (patch) | |
tree | f8ff7a8bf923f82781b9b7c080734df86a14094c /src/abslibre-tools/createworkdir | |
parent | 93164e46342883e70e84688ae7252cbce47e4281 (diff) |
abslibre-tools: internationalize
Diffstat (limited to 'src/abslibre-tools/createworkdir')
-rwxr-xr-x | src/abslibre-tools/createworkdir | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/abslibre-tools/createworkdir b/src/abslibre-tools/createworkdir index e98da3e..59cb0f3 100755 --- a/src/abslibre-tools/createworkdir +++ b/src/abslibre-tools/createworkdir @@ -28,9 +28,9 @@ check_vars libretools WORKDIR REPOS ABSLIBREGIT || exit 1 [[ ! -d ${WORKDIR} ]] && { # Create the WORKDIR - msg "Creating WORKDIR on ${WORKDIR}" + msg "Creating WORKDIR on %s" "${WORKDIR}" mkdir -p ${WORKDIR} ||{ - error "Could not create ${WORKDIR}"; exit 1 + error "Could not create %s" "${WORKDIR}"; exit 1 } } @@ -39,7 +39,7 @@ for _repo in "${REPOS[@]}"; do # Create the staging dirs [[ ! -d ${WORKDIR}/staging/${_repo} ]] && { mkdir -p ${WORKDIR}/staging/${_repo} || { - error "Can't create ${WORKDIR}/staging/${_repo}" + error "Can't create %s" "${WORKDIR}/staging/${_repo}" exit 1 } } |