Merge pull request #124984 from NixOS/backport-124980-to-release-21.05

[Backport release-21.05] sageWithDoc: fix documentation symlinks
This commit is contained in:
Sandro 2021-05-31 03:00:57 +02:00 committed by GitHub
commit a2e86da944
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
mv html/en/_static{,.tmp}
for _dir in `find -name _static` ; do
rm -r $_dir
ln -s html/en/_static $_dir
ln -rs html/en/_static $_dir
done
mv html/en/_static{.tmp,}
'';