Actually build for release mya

This commit is contained in:
Starbeamrainbowlabs 2019-02-12 20:08:27 +00:00
parent fd74e5f3a7
commit 83c1246fab
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 3 deletions

4
build
View File

@ -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;