Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a538f93

Browse files
Joshua Timbermanjtimberman
Joshua Timberman
authored and
jtimberman
committed
not_if blocks need an end.
1 parent fe6de75 commit a538f93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

recipes/default.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
end
3131

3232
bash "install-nltk" do
33-
not_if do File.exists?("/usr/lib/python2.5/site-packages/nltk-0.9.8.egg-info")
33+
not_if do File.exists?("/usr/lib/python2.5/site-packages/nltk-0.9.8.egg-info") end
3434
pwd "/tmp"
3535
code <<-EOH
3636
wget http://nltk.googlecode.com/files/nltk-0.9.8.zip
3737
unzip nltk-0.9.8.zip
3838
cd nltk-0.9.8
3939
python setup.py install
4040
EOH
41-
end
41+
end

0 commit comments

Comments
 (0)