aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wilmott <p@p8952.info>2015-01-05 15:31:01 +0000
committerPeter Wilmott <p@p8952.info>2015-01-05 15:31:01 +0000
commit68288c4cd9dd43cc1540a1b274b3ebec50b8444e (patch)
tree4e163e325c732da7edd9c1c6e32e6888be7ced25
parentAttach the correct package_id values to builds when packages are not in the d... (diff)
downloadruby-tinderbox-68288c4cd9dd43cc1540a1b274b3ebec50b8444e.tar.gz
ruby-tinderbox-68288c4cd9dd43cc1540a1b274b3ebec50b8444e.tar.bz2
ruby-tinderbox-68288c4cd9dd43cc1540a1b274b3ebec50b8444e.zip
Don't send slot values to tinder.sh
-rw-r--r--web/lib/ci.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/ci.rb b/web/lib/ci.rb
index 7514a14..168197f 100644
--- a/web/lib/ci.rb
+++ b/web/lib/ci.rb
@@ -1,7 +1,7 @@
def run_ci(num_of_packages)
packages = []
Package.order { [category, lower(name), version] }.each do |package|
- packages << package[:identifier]
+ packages << package[:identifier].split(':')[0]
end
if num_of_packages == :all