mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +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
|
||||
|
||||
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..."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue