v1.3 - Add fallback downloadpath if its not set.
This commit is contained in:
parent
13061e91a4
commit
01404ba986
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
scriptVersion="1.2"
|
scriptVersion="1.3"
|
||||||
scriptName="Audio"
|
scriptName="Audio"
|
||||||
|
|
||||||
#### Import Settings
|
#### Import Settings
|
||||||
|
@ -16,6 +16,9 @@ if [ "$enableAudio" != "true" ]; then
|
||||||
sleep infinity
|
sleep infinity
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -z "$downloadPath" ]; then
|
||||||
|
downloadPath="/config/extended/downloads"
|
||||||
|
fi
|
||||||
|
|
||||||
getArrAppInfo () {
|
getArrAppInfo () {
|
||||||
# Get Arr App information
|
# Get Arr App information
|
||||||
|
|
Loading…
Reference in a new issue