From b40a6abf8973d151d5010dff329e533594f4e8fc Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Tue, 22 May 2018 09:47:47 -0500 Subject: [PATCH] fixed publish script --- scripts/release.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 486e5a7..424f8c1 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -4,7 +4,8 @@ DIR=`dirname $0` rm -rf $DIR/../*/bin $DIR/../*/obj xbuild /p:Configuration=Release $DIR/../Ficdown.sln cp -R $DIR/../Ficdown.Console/bin/Release /tmp/ficdown -rm -f /tmp/ficdown/*.mdb +rm -f /tmp/ficdown/*.mdb /tmp/ficdown/*.pdb +rm /tmp/ficdown/Ficdown.Console.exe.config mv /tmp/ficdown/Ficdown.Console.exe /tmp/ficdown/ficdown.exe -zip -j /tmp/ficdown.zip /tmp/ficdown/* +7z a -tzip /tmp/ficdown.zip -w /tmp/ficdown/* rm -rf /tmp/ficdown