forked from Eucaly/ThirdFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-all.cmd
More file actions
22 lines (21 loc) · 739 Bytes
/
release-all.cmd
File metadata and controls
22 lines (21 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@echo off
rem release-all.cmd
rem
rem runs a release phase and then copies the files to be released
rem over into associated places.
rem
call tiddlywiki ^
editions/release ^
--verbose ^
--build release ^
|| exit 1
echo Copying files: plugin into skeleton
copy editions\release\output\thirdflow.tid skeleton\src\tiddlers\system\plugins\TheDiveO
if exist ..\ThirdFlow.github.io\index.html (
echo Copying files: updating micro web site release files
copy editions\release\output\thirdflow.* ..\ThirdFlow.github.io\output
)
if exist ..\TW5FontAwesome\README.md (
echo Copying files: updating FontAwesome with plugin
copy editions\release\output\thirdflow.tid ..\TW5FontAwesome\src\tiddlers\system\plugins\TheDiveO
)