From 83c1246fabee1080a9d1ea7ab0e9805d417276cc Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 12 Feb 2019 20:08:27 +0000 Subject: [PATCH] Actually build for release mya --- build | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build b/build index 6ae7a9d..8ded495 100755 --- a/build +++ b/build @@ -66,6 +66,7 @@ function task_build { task_begin "Building"; execute msbuild; + execute msbuild /p:Configuration=Release; task_end $?; } @@ -79,9 +80,6 @@ function task_archive { find RhinoReminds/bin -type f -iname "*.exe" -print0 | xargs -0 -P4 chmod -c +x; task_end $?; - pwd - ls -lR - task_begin "Creating Archives"; execute cp -ral RhinoReminds/bin/Debug RhinoReminds-Debug; execute cp -ral RhinoReminds/bin/Release RhinoReminds-Release;