FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lambda/setupWorkspace.sh at master · Almaz3123/lambda · GitHub
Almaz3123
/
lambda
Public
forked from
lambda-client/lambda-legacy
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lambda
/
setupWorkspace.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
31 lines (25 loc) · 1 KB
Breadcrumbs
lambda
/
setupWorkspace.sh
Copy path
File metadata and controls
executable file
·
31 lines (25 loc) · 1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!
/bin/sh
#
Used to setup workspace and fix building on unix / Git BASH
#
#
Usage: "./setupWorkspace.sh"
SECONDS=0
#
To allow use from outside the lambda directory
cd
"
$(
dirname
"
$0
"
)
"
||
exit
echo
"
Running gradlew classes without daemon...
"
./gradlew --no-daemon classes
||
{
echo
"
ERROR: Running gradlew build failed! Run './gradlew --no-daemon classes' manually
"
exit
1
}
#
Generates InteliJ runs so the user doesn't have to do that manually
echo
"
Generating InteliJ runs
"
./gradlew --no-daemon genIntellijRuns
||
{
echo
"
ERROR: Failure generating InteliJ runs! try generating them manually from within IntelliJ
"
exit
1
}
cat logo_ascii.txt
2>
/dev/null
echo
"
==========================================================================
"
echo
"
"
#
shellcheck disable=SC2039
echo
"
Build succeeded in
$((
SECONDS
/
60
))
minutes and
$((
SECONDS
%
60
))
seconds! All checks passed, you can build normally now! Welcome to Lambda.
"
echo
"
"
echo
"
==========================================================================
"
Back
|
FazBrowse Home
|
New Git URL