From b917246be9d9874c683a94ef9fba0e2b2ab99133 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 26 Mar 2019 10:09:30 -0400 Subject: [PATCH] Add missing closing brace. --- pkg/mac/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/mac/build.sh b/pkg/mac/build.sh index ee3e09b8a..2e6c574aa 100755 --- a/pkg/mac/build.sh +++ b/pkg/mac/build.sh @@ -166,7 +166,7 @@ _complete_bundle() { cd ${SOURCEDIR}/pkg/mac # Copy the binary utilities into place - mkdir -p "${BUILDROOT/${APP_BUNDLE_NAME}/Contents/SharedSupport/" || exit 1 + mkdir -p "${BUILDROOT}/${APP_BUNDLE_NAME}/Contents/SharedSupport/" || exit 1 cp "${PGDIR}/bin/pg_dump" "${BUILDROOT}/${APP_BUNDLE_NAME}/Contents/SharedSupport/" || exit 1 cp "${PGDIR}/bin/pg_dumpall" "${BUILDROOT}/${APP_BUNDLE_NAME}/Contents/SharedSupport/" || exit 1 cp "${PGDIR}/bin/pg_restore" "${BUILDROOT}/${APP_BUNDLE_NAME}/Contents/SharedSupport/" || exit 1