diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-08-12 13:43:20 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-08-12 13:43:20 +0100 |
commit | 7b4378487a87517267c13f74e3cf374983e8f3a0 (patch) | |
tree | 44cadbf3bdb93158f45fcbd46e6420438311408a /lib/tasks/submodules.rake | |
parent | be201cae650d21182b920c1766316a97f2bd1915 (diff) | |
parent | f4cc1e79422b821f177679568d0f73cfefa0708e (diff) |
Merge branch 'rails-3-develop' into release/0.13
Diffstat (limited to 'lib/tasks/submodules.rake')
-rw-r--r-- | lib/tasks/submodules.rake | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/tasks/submodules.rake b/lib/tasks/submodules.rake new file mode 100644 index 000000000..426192713 --- /dev/null +++ b/lib/tasks/submodules.rake @@ -0,0 +1,28 @@ + +namespace :submodules do + + desc "Check the status of the project's submodules" + task :check => :environment do + commit_info = `git submodule status commonlib` + case commit_info[0,1] + when '+' + $stderr.puts "Error: Currently checked out submodule commit for commonlib" + $stderr.puts "does not match the commit expected by this version of Alaveteli." + $stderr.puts "You can update it with 'git submodule update'." + exit(1) + when '-' + $stderr.puts "Error: Submodule commonlib needs to be initialized." + $stderr.puts "You can do this by running 'git submodule update --init'." + exit(1) + when 'U' + $stderr.puts "Error: Submodule commonlib has merge conflicts." + $stderr.puts "You'll need to resolve these to run Alaveteli." + exit(1) + when ' ' + exit(0) + else + raise "Unexpected status character in response to 'git submodule status commonlib': #{commit_info[0,1]}" + end + end + +end |