A lot of updates
This commit is contained in:
@@ -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
|
||||
@@ -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%
|
||||
)
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user