blob: 61566c826bd5928ef9e7e1d355ba8cd4f04123f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-aa,v 1.3 2009/02/09 08:12:41 obache Exp $
--- test.rb.orig 2009-02-09 02:58:07.000000000 +0000
+++ test.rb
@@ -28,7 +28,7 @@ commands = [
]
num = 1
commands.each do |command|
- rv = system("/usr/bin/ruby #{command} >/dev/null")
+ rv = system("ruby #{command} >/dev/null")
if rv
printf("%03d/%03d: %s: ok\n", num, commands.size, command)
else
|