From dfc7fb8a1efaaa1264ee1cd9dbe6e5282419e7fa Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Sat, 11 Feb 2023 12:08:09 +0200 Subject: [PATCH] see if cp -rp works on Mac --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a482bf22..0b5f346f 100644 --- a/build.gradle +++ b/build.gradle @@ -220,7 +220,7 @@ def rpm(def platform, def arch) { def macLauncher(def platform) { def dist = buildDir.path + '/libs' def name = 'Angry IP Scanner' - exec("cp -ra ext/mac-bundle/. $dist") + exec("cp -rp ext/mac-bundle/. $dist") ant.copy(todir: dist) { ant.fileset(dir: "ext/mac-bundle") }