Skip to content

Commit

Permalink
Ensure we don't go past our allowed version
Browse files Browse the repository at this point in the history
  • Loading branch information
philwhineray committed Aug 20, 2017
1 parent 54a6922 commit 492e871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FireHOL Website
This tree contains the sources for the FireHOL website:
http://firehol.org

The website is built using nanoc 3.x, pandoc and nokogiri. If you have
The website is built using nanoc 3.8.x, pandoc and nokogiri. If you have
ruby 1.9+ (on your machine you can install them with gem:

sudo gem install nanoc pandoc-ruby nokogiri
Expand Down
2 changes: 1 addition & 1 deletion setpath
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set up a path to the nanoc executable installed by the gem, rather than
# using a system default
# Run as . ./setpath
x=$(find /var/lib/gems -name nanoc | sed -n 's/bin.nanoc/bin/p' | sort | tail -n 1)
x=$(find /var/lib/gems -name nanoc | sed -n 's/bin.nanoc/bin/p' | grep '3\.8' | sort | tail -n 1)
export PATH=$x:$PATH
echo "Added to front of PATH: $x"

0 comments on commit 492e871

Please sign in to comment.