From 2b668287040228e85d3482fc331a9bf53ac00030 Mon Sep 17 00:00:00 2001 From: Dragan <84459109+dragan-clapp-creator@users.noreply.github.com> Date: Fri, 11 Nov 2022 12:33:14 +0100 Subject: [PATCH] Add files via upload --- starter.bat | 7 +++++++ starter.sh | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 starter.bat create mode 100644 starter.sh diff --git a/starter.bat b/starter.bat new file mode 100644 index 0000000..7a4db47 --- /dev/null +++ b/starter.bat @@ -0,0 +1,7 @@ +@echo off + +SET EDIT_JAR="/editor/VisualCLAppEditor.jar" +SET CLAPP_JAR="/lib/CLApp.jar" +SET BCEL_JAR="/lib/bcel-5.2.jar" + +java -cp "$EDIT_JAR;$CLAPP_JAR;$BCEL_JAR" clp.edit.CLAppEditor diff --git a/starter.sh b/starter.sh new file mode 100644 index 0000000..492a83c --- /dev/null +++ b/starter.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +export EDIT_JAR="/editor/VisualCLAppEditor.jar" +export CLAPP_JAR="/lib/CLApp.jar" +export BCEL_JAR="/lib/bcel-5.2.jar" + +java -cp "$EDIT_JAR:$CLAPP_JAR:$BCEL_JAR" clp.edit.CLAppEditor