diff options
author | 2015-04-13 19:03:12 +0100 | |
---|---|---|
committer | 2015-04-13 19:03:12 +0100 | |
commit | 5380f6d27f6a04d4ced645f9221b9025bb0f970c (patch) | |
tree | 56ddeecdabf7b91d94b8ff71c291cf0667954d55 /web/Rakefile | |
parent | When building a package also build it with the next target if possible (diff) | |
download | ruby-tinderbox-5380f6d27f6a04d4ced645f9221b9025bb0f970c.tar.gz ruby-tinderbox-5380f6d27f6a04d4ced645f9221b9025bb0f970c.tar.bz2 ruby-tinderbox-5380f6d27f6a04d4ced645f9221b9025bb0f970c.zip |
Correct repoman.sh to work better when the next target is unknown; Rubocop style fixes
Diffstat (limited to 'web/Rakefile')
-rw-r--r-- | web/Rakefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/web/Rakefile b/web/Rakefile index e2d5b44..038b34b 100644 --- a/web/Rakefile +++ b/web/Rakefile @@ -8,8 +8,6 @@ task :test do end namespace :db do - DB.loggers << Logger.new($stdout) - task :migrate do Sequel.extension :migration Sequel::Migrator.run(DB, 'db/migrations') @@ -51,6 +49,7 @@ namespace :docker do begin num_of_packages = Integer(num_of_packages) rescue + 'Do not suppress exceptions' end desc 'Build a docker image to use with subsequent tasks' |