diff options
author | Mark Ferrell <major@homeonderanged.org> | 2014-07-22 14:39:06 -0700 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2014-07-22 14:39:06 -0700 |
commit | 2f2990bacba3fdf2535f85c88dd8b6b0506e3b99 (patch) | |
tree | 41fc3ee8f1bc4ac0210877d51c9b80cb970df6d2 | |
parent | 725e3f949942d11a8ab39c6be32e10e011ade677 (diff) |
Fix missing quote in log message
-rwxr-xr-x | libexec/build-make-prep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/build-make-prep b/libexec/build-make-prep index 5150b0d..572343d 100755 --- a/libexec/build-make-prep +++ b/libexec/build-make-prep @@ -36,7 +36,7 @@ build_make_prep() SOURCE_DIR="${BUILDER_PKGDIR}/${CATEGORY}/${NAME}/source" if test -e "${SOURCE_DIR}"; then - echo "prepping ${1} from source: '${SOURCE_DIR}" + echo "prepping ${1} from source: '${SOURCE_DIR}'" if [ "$(command -v rsync)" ]; then if ! rsync -rav --delete "${SOURCE_DIR}/" "${S}"; then die "failed to sync source to '${S}'" |