mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2025-12-17 06:04:25 +01:00
7 lines
195 B
Bash
Executable File
7 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
if [ "x$TERM" == "xdumb" ];
|
|
then
|
|
export TERM="xterm"
|
|
fi
|
|
./gradlew :application:bootJar && clear && java -Dspring.profiles.active=h2 -jar application/build/libs/application-boot.jar
|