-
Notifications
You must be signed in to change notification settings - Fork 23
/
update-libs.bat
26 lines (22 loc) Β· 1.07 KB
/
update-libs.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
REM This script will update libraries used by marknotes by downloading the latest
REM version from their github repo or composer then copy files in the destination
REM folder (folder /libs or in /plugins/... (where the lib is used)
cls
@ECHO OFF
REM ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
REM β Update libraries used by marknotes β
REM β 1. in /vendor/ update each git repositories β
REM β 2. call composer update β
REM ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ECHO.
ECHO 1. Update git repositories
pushd vendor
call git_pull.bat
popd
ECHO.
ECHO 2. Composer update
ECHO.
call composer.bat update
ECHO.
ECHO END
ECHO.