summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-03-11 13:53:21 -0700
committerRicho Healey <richo@psych0tik.net>2015-03-11 13:56:53 -0700
commitf3339c8cef6a4a73f540930d7b48a2ffe6f9352e (patch)
tree58b25b1db5bc967f14f5f8b66bb0ea84fd2ac1d6 /bin
parent65fdcba0d97f2c325909454f000ce7dfbc772b2f (diff)
downloadpry-f3339c8cef6a4a73f540930d7b48a2ffe6f9352e.tar.gz
cli: parse_opts should not actually spin off a repl
Diffstat (limited to 'bin')
-rwxr-xr-xbin/pry3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/pry b/bin/pry
index 3904fe96..dcd643fb 100755
--- a/bin/pry
+++ b/bin/pry
@@ -13,4 +13,5 @@ rescue LoadError
end
# Process command line options and run Pry
-Pry::CLI.parse_options
+opts = Pry::CLI.parse_options
+Pry::CLI.start(opts)