File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 3333test : dotnet/.ok erlang/.ok java/.ok python/.ok php/.ok ruby/.ok python-puka/.ok
3434 RUBYVER=$(RUBYVER ) python test.py
3535
36- RABBITVER: =` curl -s " http://www.rabbitmq.com/releases/rabbitmq-server/?C=N;O=D;F=0;V=1" | grep -oE ' ([0-9\.]{5,})' | head -n 1 `
36+ RABBITVER: =$( shell curl -s "http://www.rabbitmq.com/releases/rabbitmq-server/?C=N;O=D;F=0;V=1" | grep -oE '([0-9\.]{5,}) ' | head -n 1)
3737R =http://www.rabbitmq.com/releases
3838
3939DVER =$(RABBITVER )
Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ def run(cmd, **kwargs):
1616 out = p .stdout .read ()
1717 err = p .stderr .read ()
1818
19- time .sleep (0.5 )
19+ time .sleep (0.2 )
2020 return p .returncode , out + '\n ' + err
2121
2222def spawn (cmd , ** kwargs ):
2323 p = subprocess .Popen (cmd .split (),
2424 stdout = subprocess .PIPE ,
2525 stderr = subprocess .PIPE ,
2626 ** kwargs )
27- time .sleep (1.0 )
27+ time .sleep (0.5 )
2828 return p
2929
3030def wait (p , match ):
You can’t perform that action at this time.
0 commit comments