summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorist <ist@ist.opentox.org>2010-10-18 18:39:18 +0200
committerist <ist@ist.opentox.org>2010-10-18 18:39:18 +0200
commit20887f5aca9a684169bae2c1893df77cc9783f77 (patch)
tree73f368ad63dae5d2a20876412e4c159001588d71 /Rakefile
parent79d3d7cbca1c3ba8c6dddec114ae0a5bb337af81 (diff)
Rooted LastPM integration
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile15
1 files changed, 13 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 70139f4..e92dbb2 100644
--- a/Rakefile
+++ b/Rakefile
@@ -13,12 +13,23 @@ namespace "fminer" do
puts `git pull`
puts `./configure`
if $? == 0
- puts `echo "Fminer successfully configured."`
+ puts `echo "Fminer/LibBbrc successfully configured."`
else
- puts `echo "Fminer configuration failed!"`
+ puts `echo "Fminer/LibBbrc configuration failed!"`
exit
end
puts `make ruby`
+ Dir.chdir('../liblast')
+ puts `git checkout master`
+ puts `git pull`
+ puts `./configure`
+ if $? == 0
+ puts `echo "Fminer/LibLast successfully configured."`
+ else
+ puts `echo "Fminer/LibLast configuration failed!"`
+ exit
+ end
+ puts `make ruby`
end
desc "Update gems and fminer"