Skip to content

Commit

Permalink
hobo command now shows you what it's doing
Browse files Browse the repository at this point in the history
  • Loading branch information
tslocke committed May 19, 2008
1 parent 36faeea commit cb46154
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hobo/bin/hobo
Expand Up @@ -31,7 +31,9 @@ end


def command(*s)
ok = system(s.join(' '))
com = s.join(' ')
puts "--> #{com}"
ok = system(com)
exit(1) unless ok
end

Expand Down

0 comments on commit cb46154

Please sign in to comment.