Search only for README.html and symlink to index.html
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
Mentioned in commit 169254f7
Mentioned in issue #78 (closed)
Mentioned in merge request !45 (closed)
12 12 - ruby generate.rb 13 13 # Symlink all README.html to index.html for backwards compatibility. The site 14 14 # was deployed in a VPS and served by NGINX. 15 - find public -type d -not -path public | xargs -I{} ln -s README.html "{}/index.html" 15 - for i in `find public -name README.html`; do ln -sf README.html $(dirname $i)/index.html; done
Please register or sign in to reply