Skip to content

Commit

Permalink
change prompt from >> to SQL>
Browse files Browse the repository at this point in the history
  • Loading branch information
hone committed Apr 30, 2010
1 parent 86f231e commit e0fb6df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/heroku/commands/sql.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def index
sqlconsole_history_read(app)

display "SQL console for #{app}.#{heroku.host}"
while sql = Readline.readline('>> ')
while sql = Readline.readline('SQL> ')
unless sql.nil? || sql.strip.empty?
sqlconsole_history_add(app, sql)
break if sql.downcase.strip == 'exit'
Expand Down

0 comments on commit e0fb6df

Please sign in to comment.