1
0
mirror of https://github.com/spacebarchat/spacebarchat.git synced 2024-11-25 03:43:31 +01:00

Merge pull request #22 from TimSchweiz/main

created update.bat script
This commit is contained in:
Flam3rboy 2021-04-07 16:58:31 +02:00 committed by GitHub
commit ef04fffc6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 1 deletions

View File

@ -39,7 +39,7 @@ echo Dependencies are already Installed
ECHO.
echo Creating organization directory
ECHO.
CD ..\..\
CD ..\..\..\
MKDIR fosscord-workspace
cd fosscord-workspace
ECHO Cloning all repositories

0
setup/setup.sh → scripts/setup/setup.sh Executable file → Normal file
View File

View File

@ -0,0 +1,5 @@
@ECHO off
ECHO Update...
cd ..\..\..\
FOR /D %%a IN (%CD%\fosscord-workspace\*) do git -C %%~fa pull && npm i
PAUSE