Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

handleError = (err) ->
if err
console.log "\n\033[1;36m=>\033[1;37m Remember that you need: [email protected] and [email protected]\033[0;37m\n"
console.log "\n\u033[1;36m=>\u033[1;37m Remember that you need: [email protected] and [email protected]\u033[0;37m\n"
console.log err.stack

print = (data) -> console.log data.toString().trim()
Expand Down
4 changes: 2 additions & 2 deletions src/test_server.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ class TestServer extends EventEmitter
callback()
else
currDir = subdirs.shift()
fs.mkdir currDir, 0700, createDir
fs.mkdir currDir, 0o0700, createDir
rmrf = spawn("rm", ["-rf", @options.tempDir])
rmrf.on 'exit', createDir

writeRiakScript: (callback) ->
outScript = fs.createWriteStream @riakScript, {encoding: 'utf8', mode: 0700}
outScript = fs.createWriteStream @riakScript, {encoding: 'utf8', mode: 0o0700}
inScript = fs.createReadStream "#{@options.binDir}/riak", encoding: 'utf8'

inScript.on 'error', (err) ->
Expand Down