Skip to content
Snippets Groups Projects

Search only for README.html and symlink to index.html

Merged Achilleas Pipinellis requested to merge fix-symlinking into master
1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
Loading