From 4d4f7123aa3ca217e8a115e27e32d22d3a3c10b1 Mon Sep 17 00:00:00 2001 From: Hellowlol Date: Wed, 29 Apr 2020 15:51:55 +0300 Subject: [PATCH] update location path for docker --- tools/plex-bootstraptest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/plex-bootstraptest.py b/tools/plex-bootstraptest.py index 35e69e26..4c926a90 100755 --- a/tools/plex-bootstraptest.py +++ b/tools/plex-bootstraptest.py @@ -495,7 +495,7 @@ if __name__ == "__main__": dict( name="Movies", type="movie", - location=movies_path, + location="/data/Movies" if opts.no_docker is False else movies_path, agent="com.plexapp.agents.imdb", scanner="Plex Movie Scanner", expected_media_count=num_movies, @@ -511,7 +511,7 @@ if __name__ == "__main__": dict( name="TV Shows", type="show", - location=tvshows_path, + location="/data/TV-Shows" if opts.no_docker is False else tvshows_path, agent="com.plexapp.agents.thetvdb", scanner="Plex Series Scanner", expected_media_count=num_ep, @@ -527,7 +527,7 @@ if __name__ == "__main__": dict( name="Music", type="artist", - location=music_path, + location="/data/Music" if opts.no_docker is False else music_path, agent="com.plexapp.agents.lastfm", scanner="Plex Music Scanner", expected_media_count=song_c, @@ -543,7 +543,7 @@ if __name__ == "__main__": dict( name="Photos", type="photo", - location=photos_path, + location="/data/Photos" if opts.no_docker is False else photos_path, agent="com.plexapp.agents.none", scanner="Plex Photo Scanner", expected_media_count=has_photos,