Skip to content

Commit

Permalink
add zip archive script
Browse files Browse the repository at this point in the history
  • Loading branch information
pypy-vrc committed Apr 7, 2020
1 parent ab6e162 commit 85ded18
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions make-zip.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@echo off
setlocal
set TODAY=%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%
set ZIP_NAME=VRCX_%TODAY%.zip
echo %ZIP_NAME%
rem using bandizip (https://www.bandisoft.com/bandizip)
bandizip c -l:9 -cmt:"https://github.com/pypy-vrc/VRCX" -ex:"cache;node_modules;src;*.log;*.zip;package.json;package-lock.json;.eslintrc.js;webpack.config.js;VRCX.json;VRCX.sqlite;VRCX_ZIP.cmd" -r %ZIP_NAME% bin/x64/Release/*
pause

0 comments on commit 85ded18

Please sign in to comment.