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