1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-19 20:32:00 +02:00

Windows zip package

This commit is contained in:
Chen-I Lim 2021-03-23 13:49:23 -07:00
parent d6beedceea
commit 8c0a8e4cd3
2 changed files with 14 additions and 1 deletions

1
win-wpf/.gitignore vendored
View File

@ -1,6 +1,7 @@
packages
obj
msix
temp
dist
*.msix
*.suo

View File

@ -3,4 +3,16 @@
if exist dist\focalboard-win.zip del /q dist\focalboard-win.zip
if not exist dist mkdir dist
powershell Compress-Archive -Path Focalboard\bin\x64\Release\* -DestinationPath dist\focalboard-win.zip
if exist temp del /s /f /q temp
rmdir /s /q temp
if not exist temp mkdir temp
xcopy /e /i /y Focalboard\bin\x64\Release temp
copy ..\build\MIT-COMPILED-LICENSE.md temp
copy ..\NOTICE.txt temp
copy ..\webapp\NOTICE.txt temp\webapp-NOTICE.txt
echo --- Contents of temp ---
dir /s /b temp
echo ---
powershell Compress-Archive -Path temp\* -DestinationPath dist\focalboard-win.zip