mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Fix realpath error on macOS 13 (#8707)
This commit is contained in:
parent
6d23a3bd2c
commit
188fff1488
1 changed files with 1 additions and 1 deletions
|
@ -883,7 +883,6 @@ build() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
OUTPUT_DIR="$(realpath "$OUTPUT_DIR")"
|
|
||||||
if ! ${build_snapshot} && [ -d "$OUTPUT_DIR" ]; then
|
if ! ${build_snapshot} && [ -d "$OUTPUT_DIR" ]; then
|
||||||
exitError "Output dir '${OUTPUT_DIR}' already exists."
|
exitError "Output dir '${OUTPUT_DIR}' already exists."
|
||||||
fi
|
fi
|
||||||
|
@ -892,6 +891,7 @@ build() {
|
||||||
if ! mkdir -p "$OUTPUT_DIR"; then
|
if ! mkdir -p "$OUTPUT_DIR"; then
|
||||||
exitError "Failed to create output directory!"
|
exitError "Failed to create output directory!"
|
||||||
fi
|
fi
|
||||||
|
OUTPUT_DIR="$(realpath "$OUTPUT_DIR")"
|
||||||
|
|
||||||
if ${build_source_tarball}; then
|
if ${build_source_tarball}; then
|
||||||
logInfo "Creating source tarball..."
|
logInfo "Creating source tarball..."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue