Advertisement
ILyaCyclone

Untitled

Feb 15th, 2019
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. @echo OFF
  2. set dateformat=%date:~6,4%.%date:~3,2%.%date:~0,2%
  3. set timeformat=%time:~0,2%-%time:~3,2%
  4. set datetime=%dateformat%_%timeformat%
  5. @echo ON
  6. mkdir %datetime%
  7.  
  8. @echo OFF
  9. cd %datetime%
  10. @echo ON
  11. @echo Starting git clone...
  12. git clone -b develop --single-branch -c http.sslVerify=false https://gitlab.deasigndemo.com/Deasign-russia/rtu.git
  13.  
  14. @echo OFF
  15. cd rtu
  16. @echo ON
  17. @echo Starting npm install...
  18. npm install
  19.  
  20. @echo Starting build...
  21. node node_modules\gulp\bin\gulp.js --production --folder=resources
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement