From 0ac1a4c0887991ebd4841c3b4f00241e21fb7e89 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Thu, 21 Dec 2023 01:28:46 -0500 Subject: [PATCH] [-] Remove deploy script --- deploy.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 deploy.sh diff --git a/deploy.sh b/deploy.sh deleted file mode 100755 index bfc17769..00000000 --- a/deploy.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash - -# This is a deploy script for this java program - -# 1. Build the jar -rm -rf build/libs -JAVA_HOME="/usr/lib/jvm/java-17-openjdk" ./gradlew build - -# 2. Copy the jar to the server -jar_name=$(ls -v build/libs/aqua-*.jar | grep -v "plain" | head -n 1) -scp "$jar_name" lux:/root/aqua/aqua.jar - -# 3. Restart the service -ssh lux "systemctl restart aqua"