mirror of
https://github.com/ijprest/keyboard-layout-editor.git
synced 2026-04-10 02:00:46 -07:00
-- I didn't want to deplot 100+MB of the bower_components folder -- Makefile now copies over just the stuff we want from bower_components -- Deploy scripts now only certain directories & files (opt-in vs. opt-out) -- Fixed "make install"
11 lines
414 B
Batchfile
11 lines
414 B
Batchfile
@echo off
|
|
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
|
|
set PARMS=
|
|
if "%1"=="" SET PARMS=--dryrun
|
|
for %%Q IN (css js fonts samples) DO (
|
|
aws s3 sync .\%%Q s3://www.keyboard-layout-editor.com/%%Q --acl public-read %PARMS%
|
|
)
|
|
for %%Q IN (kb.html kb.js render.js serial.js extensions.js *.md *.json favicon.ico) DO (
|
|
aws s3 cp .\%%Q s3://www.keyboard-layout-editor.com/%%Q --acl public-read %PARMS%
|
|
)
|
|
goto :EOF
|