aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/frost/files/wrapper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/frost/files/wrapper.sh')
-rw-r--r--net-p2p/frost/files/wrapper.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/net-p2p/frost/files/wrapper.sh b/net-p2p/frost/files/wrapper.sh
deleted file mode 100644
index e4dd1b7628d1..000000000000
--- a/net-p2p/frost/files/wrapper.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-PREFIX="%%PREFIX%%"
-JAVAVM="%%JAVAVM%%"
-JAR_DIR="%%JAR_DIR%%"
-JAR_FILE="%%JAR_FILE%%"
-HOME_DIR=${HOME}/.frost
-
-if [ ! -d ${HOME_DIR} ]
-then
- mkdir -p ${HOME_DIR}
-fi
-
-cd ${HOME_DIR} &&
- exec ${JAVAVM} -jar ${PREFIX}/${JAR_DIR}/${JAR_FILE} "${@}"