diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-01-13 11:25:42 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-01-13 11:25:42 +0000 |
commit | 3389249542b21459315d6a061c26f9f6cee8d84b (patch) | |
tree | 2e00c5c0ac585aef1c2009eca7002ab1aa11b4c5 /bin | |
parent | baa756b55aeea8d756144231524fd3d6a5c59b00 (diff) |
Avoid hard-wiring 1.8 ruby
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/custodian-dequeue | 2 | ||||
-rwxr-xr-x | bin/custodian-enqueue | 2 | ||||
-rwxr-xr-x | bin/custodian-queue | 2 | ||||
-rwxr-xr-x | bin/multi-ping | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/bin/custodian-dequeue b/bin/custodian-dequeue index f121686..3072fbd 100755 --- a/bin/custodian-dequeue +++ b/bin/custodian-dequeue @@ -1,4 +1,4 @@ -#!/usr/bin/ruby1.8 -Ilib/ -I../lib/ -rubygems +#!/usr/bin/ruby -Ilib/ -I../lib/ -rubygems # # NAME # custodian-dequeue - Pull network tests from a queue and execute them in series. diff --git a/bin/custodian-enqueue b/bin/custodian-enqueue index 4aab52e..6ca56ad 100755 --- a/bin/custodian-enqueue +++ b/bin/custodian-enqueue @@ -1,4 +1,4 @@ -#!/usr/bin/ruby1.8 +#!/usr/bin/ruby # # NAME # custodian-enqueue - Parse tests from a file and enqueue to beanstalkd. diff --git a/bin/custodian-queue b/bin/custodian-queue index 3e20410..afcba2a 100755 --- a/bin/custodian-queue +++ b/bin/custodian-queue @@ -1,4 +1,4 @@ -#!/usr/bin/ruby1.8 +#!/usr/bin/ruby # # NAME # custodian-queue - Work with the queue. diff --git a/bin/multi-ping b/bin/multi-ping index fc71f3f..ef14c4c 100755 --- a/bin/multi-ping +++ b/bin/multi-ping @@ -1,4 +1,4 @@ -#!/usr/bin/ruby1.8 +#!/usr/bin/ruby -Ilib/ -I../lib/ # # NAME # multi-ping - IPv4 and IPv6 ping tool |