summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-06-16 13:31:21 +0300
committerrandx <dmitriy.zaporozhets@gmail.com>2012-06-16 13:31:21 +0300
commit67f445afea81a3581e67d67a6c225868719da755 (patch)
tree1f0a805f00bf5afabf28fdcb806f374e0d538239 /lib
parent8189082e4c48d2181158dcba1791e0cf6dd6ef1c (diff)
downloadgitlab-ce-67f445afea81a3581e67d67a6c225868719da755.tar.gz
fixed type
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/travis.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/travis.rake b/lib/tasks/travis.rake
index 91e2f8e1968..f5c7ab9cae7 100644
--- a/lib/tasks/travis.rake
+++ b/lib/tasks/travis.rake
@@ -1,5 +1,5 @@
task :travis do
- ["rspec spec", "rake cuucmber"].each do |cmd|
+ ["rspec spec", "rake cucumber"].each do |cmd|
puts "Starting to run #{cmd}..."
system("export DISPLAY=:99.0 && bundle exec #{cmd}")
raise "#{cmd} failed!" unless $?.exitstatus == 0