Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
add flag verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed Dec 3, 2009
1 parent e46bda4 commit 1bf1ac4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.pir
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,16 @@ SOURCES

.sub 'spectest' :anon
.param pmc kv :slurpy :named
.local string cmd
$I0 = file_exists('t/MarkdownTest_1.0.zip')
if $I0 goto L1
system('cd t && perl -MLWP::Simple -e "getstore(q{http://daringfireball.net/projects/downloads/MarkdownTest_1.0.zip}, q{MarkdownTest_1.0.zip});"')
cmd = 'cd t && perl -MLWP::Simple -e "getstore(q{http://daringfireball.net/projects/downloads/MarkdownTest_1.0.zip}, q{MarkdownTest_1.0.zip});"'
system(cmd, 1 :named('verbose'))
L1:
$I0 = file_exists('t/MarkdownTest_1.0')
if $I0 goto L2
system('cd t && perl -MArchive::Zip -e "Archive::Zip->new(q{MarkdownTest_1.0.zip})->extractTree();"')
cmd = 'cd t && perl -MArchive::Zip -e "Archive::Zip->new(q{MarkdownTest_1.0.zip})->extractTree();"'
system(cmd, 1 :named('verbose'))
L2:

run_step('test', kv :flat :named)
Expand Down

0 comments on commit 1bf1ac4

Please sign in to comment.