From 950d12f08b4981d359b6c29d948912d778d13cbd Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 12 Feb 2019 19:50:16 +0000 Subject: [PATCH] Hrm. The release binary archive does't appear to be generating correctly. Will this fix it? --- build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build b/build index 869f5c5..ee23310 100755 --- a/build +++ b/build @@ -82,8 +82,8 @@ function task_archive { task_begin "Creating Archives"; cp -ral RhinoReminds/bin/Debug RhinoReminds-Debug; cp -ral RhinoReminds/bin/Release RhinoReminds-Release; - cp -al README.md RhinoReminds-Debug; - cp -al README.md RhinoReminds-Release; + cp -al README.md RhinoReminds-Debug/README.md; + cp -al README.md RhinoReminds-Release/README.md; tar -caf RhinoReminds-Debug.tar.gz RhinoReminds-Debug; tar -caf RhinoReminds-Release.tar.gz RhinoReminds-Release;