Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2016-08-30 15:48:05 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2016-08-30 15:48:05 +0300
commitf573037aaeaeb24a5e8097739803e70514dabf10 (patch)
tree54429f41973a107e08c0788286a3a9a3c33d0b22 /build-release.sh
parent058745f6486dbdcc528935a8331590c947dc6d73 (diff)
Fixed error messages from the pre-build cleanup
Diffstat (limited to 'build-release.sh')
-rw-r--r--build-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-release.sh b/build-release.sh
index 9943619f0..466c84cd0 100644
--- a/build-release.sh
+++ b/build-release.sh
@@ -99,7 +99,7 @@ ${NUGET} restore Duplicati.sln
${XBUILD} /p:Configuration=Debug "BuildTools/AutoUpdateBuilder/AutoUpdateBuilder.sln"
${XBUILD} /p:Configuration=Release /target:Clean Duplicati.sln
-find Duplicati -type d -name Release -exec rm -rf {} \;
+find Duplicati -type d -name Release | xargs rm -rf
${XBUILD} /p:Configuration=Release Duplicati.sln
BUILD_STATUS=$?