Skip to content

Commit

Permalink
Update traktarr.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
MrDoobPG authored and MrDoobPG committed Nov 26, 2019
1 parent 297881b commit 394cbf6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions menu/traktarr/traktarr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -564,6 +564,9 @@ EOF
7)
sonarr=$(docker ps --format '{{.Names}}' | grep "sonarr")
radarr=$(docker ps --format '{{.Names}}' | grep "radarr")

# sonarr=$(docker ps | grep "sonarr")
# radarr=$(docker ps | grep "radarr")

if [ "$radarr" == "" ] && [ "$sonarr" == "" ]; then
tee <<-EOF
Expand All @@ -578,7 +581,7 @@ EOF
question1
else

if [ "$sonarr" = "" ]; then
if [ "$sonarr" = "sonarr" ]; then
tee <<-EOF
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Expand All @@ -590,7 +593,7 @@ EOF
echo
fi

if [ "$radarr" = "" ]; then
if [ "$radarr" = "radarr" ]; then
tee <<-EOF
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Expand Down

0 comments on commit 394cbf6

Please sign in to comment.