Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@keepassxc.org>2022-10-30 00:01:37 +0300
committerGitHub <noreply@github.com>2022-10-30 00:01:37 +0300
commit188fff1488ba72a94c3f378a2e6ab232e896355f (patch)
tree563d7de70637059afaa81d0e066cbc15d1400d15
parent6d23a3bd2c86671ec77f36eca8ae7edc60022f1d (diff)
Fix realpath error on macOS 13 (#8707)
-rwxr-xr-xrelease-tool2
1 files changed, 1 insertions, 1 deletions
diff --git a/release-tool b/release-tool
index 026c2ce63..920edba06 100755
--- a/release-tool
+++ b/release-tool
@@ -883,7 +883,6 @@ build() {
fi
fi
- OUTPUT_DIR="$(realpath "$OUTPUT_DIR")"
if ! ${build_snapshot} && [ -d "$OUTPUT_DIR" ]; then
exitError "Output dir '${OUTPUT_DIR}' already exists."
fi
@@ -892,6 +891,7 @@ build() {
if ! mkdir -p "$OUTPUT_DIR"; then
exitError "Failed to create output directory!"
fi
+ OUTPUT_DIR="$(realpath "$OUTPUT_DIR")"
if ${build_source_tarball}; then
logInfo "Creating source tarball..."