mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
plex: allow the dataDir to contain spaces by quoting the path
This commit is contained in:
parent
89727b3c9a
commit
ef0b280751
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ in stdenv.mkDerivation rec {
|
|||
RSC=$out/usr/lib/plexmediaserver/Resources
|
||||
for db in "com.plexapp.plugins.library.db"; do
|
||||
mv $RSC/$db $RSC/base_$db
|
||||
ln -s ${dataDir}/.skeleton/$db $RSC/$db
|
||||
ln -s "${dataDir}/.skeleton/$db" $RSC/$db
|
||||
done
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue