Skip to content

Commit

Permalink
Changed octal to decimal for escaped bell character
Browse files Browse the repository at this point in the history
  • Loading branch information
jawj committed Jan 17, 2012
1 parent ec55335 commit b4712c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/command.coffee
Expand Up @@ -136,7 +136,7 @@ compileScript = (file, input, base) ->
catch err
CoffeeScript.emit 'failure', err, task
return if CoffeeScript.listeners('failure').length
return printLine err.message + '\007' if o.watch
return printLine err.message + '\7' if o.watch
printWarn err instanceof Error and err.stack or "ERROR: #{err}"
process.exit 1

Expand Down

0 comments on commit b4712c6

Please sign in to comment.