Skip to content

Commit

Permalink
Incorrect path
Browse files Browse the repository at this point in the history
Wasn't using the default Plex Library path.
  • Loading branch information
hjone72 authored Apr 23, 2017
1 parent cceda4a commit bd559c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plex/reanalyzeItem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

echo "Input items are: ${1}"

PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR='/opt/plexmediaserver/Library/Application Support' LD_LIBRARY_PATH='/usr/lib/plexmediaserver' /usr/lib/plexmediaserver/Plex\ Media\ Scanner \
PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR='/var/lib/plexmediaserver/Library/Application Support' LD_LIBRARY_PATH='/usr/lib/plexmediaserver' /usr/lib/plexmediaserver/Plex\ Media\ Scanner \
--verbose \
--analyze \
--item ${1}

exit 0
exit 0

2 comments on commit bd559c8

@ajkis
Copy link
Owner

@ajkis ajkis commented on bd559c8 Apr 23, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm default path is in /var/lib

@hjone72
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah. I have mine installed on a SSD so I wasn't referencing the default path. This commit fixes that and points to the correct path.

Please sign in to comment.