* ERR_MSG: The environment variable 'HOME' must be set
This commit is contained in:
parent
3e1e6c1c3a
commit
3b1cee165a
|
@ -1,5 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
|
||||
# sanity checks
|
||||
if [ -z "$HOME" ]; then
|
||||
echo "The environment variable 'HOME' must be set"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# prepare filebot java call
|
||||
APP_ROOT="/usr/share/filebot"
|
||||
APP_DATA="$HOME/.filebot"
|
||||
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
|
||||
# sanity checks
|
||||
if [ -z "$HOME" ]; then
|
||||
echo "The environment variable 'HOME' must be set"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# prepare filebot java call
|
||||
APP_ROOT="/opt/filebot"
|
||||
APP_DATA="$HOME/.config/FileBot"
|
||||
APP_CACHE="$HOME/.cache/FileBot"
|
||||
|
|
Loading…
Reference in New Issue