Added pack.rb/unpack.rb utilities

This commit is contained in:
2014-04-23 23:10:51 -07:00
parent bfba3e38f1
commit 7b6431df28
3 changed files with 19 additions and 11 deletions

8
pack.rb Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env ruby
output = %x[make pack]
if $? != 0
puts output
puts "Something went wrong - please fix it (enter to continue)"
gets
end