Skip to content

Commit

Permalink
fix mktemp on macOS
Browse files Browse the repository at this point in the history
Signed-off-by: lugi0 <[email protected]>
  • Loading branch information
lugi0 committed Jun 12, 2024
1 parent fa28501 commit 345fcfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ods_ci/run_robot_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ if ! ${SUBFOLDER}; then
case "$(uname -s)" in
Darwin)
# shellcheck disable=SC2046
TEST_ARTIFACT_DIR=$(mktemp -d "${TEST_ARTIFACT_DIR}" -t "${TEST_ARTIFACT_DIR}"/ods-ci-$(date +%Y-%m-%d-%H-%M)-XXXXXXXXXX)
TEST_ARTIFACT_DIR=$(mktemp -d -t ods-ci-$(date +%Y-%m-%d-%H-%M)-XXXXXXXXXX) -p "${TEST_ARTIFACT_DIR}"
;;
Linux)
# shellcheck disable=SC2046
Expand Down

0 comments on commit 345fcfe

Please sign in to comment.