From 307ae40e0056513469c57011f72055e174567c28 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Thu, 29 Sep 2022 10:32:10 -0300 Subject: [PATCH] Apple: fix build failure when file already exists The tools to create a dmg on Apple are flakey, of course, and fail in cryptic ways if the file already exists, so purge it in the contrib/mac.sh script. --- contrib/mac.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/mac.sh b/contrib/mac.sh index 5455457e1..0a51fe672 100755 --- a/contrib/mac.sh +++ b/contrib/mac.sh @@ -18,6 +18,7 @@ fi ./contrib/mac-configure.sh "$@" cd build-mac +rm -rf Lokinet\ * ninja -j${JOBS:-1} package cd ..