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:
Diffstat (limited to 'release-tool')
-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..."