A lot of updates

This commit is contained in:
WolverinDEV
2019-10-26 01:51:19 +02:00
parent 53d3814f92
commit b956bad3f7
1039 changed files with 0 additions and 262642 deletions
-29
View File
@@ -1,29 +0,0 @@
#!/usr/bin/env bash
BASEDIR=$(dirname "$0")
cd "$BASEDIR/../"
if [[ "${teaclient_deploy_secret}" == "" ]]; then
echo "Missing deploy secret!"
exit 1
fi
npm run compile-tsc
if [[ $? -ne 0 ]]; then
echo "Failed to compile project"
fi
npm run compile-sass
if [[ $? -ne 0 ]]; then
echo "Failed to compile sass files"
fi
npm run build-linux-64
if [[ $? -ne 0 ]]; then
echo "Failed to build project"
fi
npm run package-linux-64 $1
if [[ $? -ne 0 ]]; then
echo "Failed to package project"
fi
-24
View File
@@ -1,24 +0,0 @@
cd /d %~dp0\..
call npm run compile-tsc
if errorlevel 1 (
echo "Failed to compile tsc files"
exit /b %errorlevel%
)
call npm run compile-sass
if errorlevel 1 (
echo "Failed to compile sass files"
exit /b %errorlevel%
)
call npm run build-windows-64
if errorlevel 1 (
echo "Failed to compile build files"
exit /b %errorlevel%
)
call npm run package-windows-64
if errorlevel 1 (
echo "Failed to compile package files"
exit /b %errorlevel%
)
-33
View File
@@ -1,33 +0,0 @@
#!/usr/bin/env bash
BASEDIR=$(dirname "$0")
cd "$BASEDIR/../"
if [[ "${teaclient_deploy_secret}" == "" ]]; then
echo "Missing deploy secret!"
exit 1
fi
npm run compile-tsc
if [[ $? -ne 0 ]]; then
echo "Failed to compile project"
exit 1
fi
npm run compile-sass
if [[ $? -ne 0 ]]; then
echo "Failed to compile sass files"
exit 1
fi
npm run build-windows-64
if [[ $? -ne 0 ]]; then
echo "Failed to build project"
exit 1
fi
npm run package-windows-64 $1
if [[ $? -ne 0 ]]; then
echo "Failed to package project"
exit 1
fi