summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2019-04-14 14:25:37 +0100
committerJames Le Cuirot <chewi@gentoo.org>2019-04-14 14:26:08 +0100
commit25e8146fbb9bd3e6a4f2f058d17b7be5614405fc (patch)
tree942ee5cbff247e4210aa8d6f63cb99d549cb5e0f /games-arcade/commandergenius/files
parentgames-arcade/commandergenius: Version bump to 2.3.3 (diff)
downloadgentoo-25e8146fbb9bd3e6a4f2f058d17b7be5614405fc.tar.gz
gentoo-25e8146fbb9bd3e6a4f2f058d17b7be5614405fc.tar.bz2
gentoo-25e8146fbb9bd3e6a4f2f058d17b7be5614405fc.zip
games-arcade/commandergenius: Drop old 1.8.3
Closes: https://bugs.gentoo.org/640540 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-arcade/commandergenius/files')
-rw-r--r--games-arcade/commandergenius/files/commandergenius-wrapper18
1 files changed, 0 insertions, 18 deletions
diff --git a/games-arcade/commandergenius/files/commandergenius-wrapper b/games-arcade/commandergenius/files/commandergenius-wrapper
deleted file mode 100644
index 0fa5243a5df0..000000000000
--- a/games-arcade/commandergenius/files/commandergenius-wrapper
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-# CommanderGenius by default searches pwd for keen data which can cause
-# massive load/lag depending on which dir you are currently in.
-# This wrapper cd's into ~/.CommanderGenius unless you pass a directory
-# on the command line which is used as additional search path then.
-#
-# use: commandergenius [path-to-keen-dir]
-
-if [ -z $1 ] ; then
- SEARCHDIR=~/.CommanderGenius
-else
- SEARCHDIR="$1"
-fi
-
-cd ${SEARCHDIR}
-
-exec CommanderGenius "$@"