8 lines
175 B
Batchfile
8 lines
175 B
Batchfile
@echo off
|
|
set "PATH=%PATH%;C:\Program Files\Git\cmd"
|
|
git fetch origin
|
|
git reset --hard origin/master
|
|
npm install --omit=dev
|
|
pm2 restart skills-market-server
|
|
echo Deploy done.
|