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:
parent
d6beedceea
commit
8c0a8e4cd3
1
win-wpf/.gitignore
vendored
1
win-wpf/.gitignore
vendored
@ -1,6 +1,7 @@
|
||||
packages
|
||||
obj
|
||||
msix
|
||||
temp
|
||||
dist
|
||||
*.msix
|
||||
*.suo
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user