Skip to content

Commit

Permalink
Caused exceptions under MacOS X with 'octal escape sequences are not …
Browse files Browse the repository at this point in the history
…allowed'
  • Loading branch information
shift committed Apr 27, 2012
1 parent 161779b commit 2ffad15
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cakefile
Expand Up @@ -11,10 +11,10 @@ fs = require 'fs'
{spawn, exec} = require 'child_process'

# ANSI Terminal Colors
bold = '\033[0;1m'
green = '\033[0;32m'
reset = '\033[0m'
red = '\033[0;31m'
bold = "BOLD"
green = "GREEN"
reset = "RESET"
red = "RED"

# Internal Functions
#
Expand Down Expand Up @@ -143,4 +143,4 @@ task 'watch', 'compile and watch', -> build true, -> log ":-)", green
# ```
# cake test
# ```
task 'test', 'run tests', -> build -> mocha -> log ":)", green
task 'test', 'run tests', -> build -> mocha -> log ":)", green

0 comments on commit 2ffad15

Please sign in to comment.