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
|
||||
scriptVersion="1.2"
|
||||
scriptVersion="1.3"
|
||||
scriptName="Audio"
|
||||
|
||||
#### Import Settings
|
||||
|
@ -16,6 +16,9 @@ if [ "$enableAudio" != "true" ]; then
|
|||
sleep infinity
|
||||
fi
|
||||
|
||||
if [ -z "$downloadPath" ]; then
|
||||
downloadPath="/config/extended/downloads"
|
||||
fi
|
||||
|
||||
getArrAppInfo () {
|
||||
# Get Arr App information
|
||||
|
|
Loading…
Reference in a new issue