diff options
Diffstat (limited to 'functions/defaults.sh')
-rwxr-xr-x | functions/defaults.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 102380514..3179df068 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -11,6 +11,8 @@ Set_defaults () { ## config/common + LH_BASE="${LH_BASE:-/usr/share/live-helper}" + # Setting mode if [ -z "${LH_MODE}" ] then @@ -217,13 +219,13 @@ Set_defaults () # Setting includes if [ -z "${LH_INCLUDES}" ] then - LH_INCLUDES="${LH_BASE:-/usr/share/live-helper}/includes" + LH_INCLUDES="${LH_BASE}/includes" fi # Setting templates if [ -z "${LH_TEMPLATES}" ] then - LH_TEMPLATES="${LH_BASE:-/usr/share/live-helper}/templates" + LH_TEMPLATES="${LH_BASE}/templates" fi # Setting live helper options |