1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

version 0.8.0pre3, removed system(cmd) for system command

This commit is contained in:
John Mair 2011-04-07 19:53:50 +12:00
parent cfba7fee9e
commit 0da553688d
2 changed files with 1 additions and 2 deletions

View file

@ -25,7 +25,6 @@ class Pry
def execute_system_command(cmd)
if cmd =~ /^cd\s+(.+)/i
Dir.chdir(File.expand_path($1))
system(cmd)
else
system(cmd)
end

View file

@ -1,3 +1,3 @@
class Pry
VERSION = "0.8.0pre1"
VERSION = "0.8.0pre3"
end