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;