Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

fix nodejsctl #115

Merged
merged 1 commit into from
Dec 19, 2013
Merged
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
3 changes: 2 additions & 1 deletion bin/nodejsctl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ cd `dirname $0`/..
NODEJS=node
BASE_HOME=`pwd`
PROJECT_NAME=`basename ${BASE_HOME}`
STDOUT_LOG=`$NODEJS -e "console.log(require('path').join(require('$BASE_HOME/config').logdir, 'nodejs_stdout.log'))"`
STDOUT_LOG=`$NODEJS -e "console.log(require('path').join(require('$BASE_HOME/config').logdir, 'nodejs_stdout.log'));\
process.exit(0);"`
NODE_DISPATH_PATH=${BASE_HOME}/dispatch.js
PROG_NAME=$0
ACTION=$1
Expand Down
2 changes: 1 addition & 1 deletion config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ var config = {
user: 'address@gmail.com',
pass: 'your password',
ssl: true,
debug: true
debug: false
},

sourceNpmRegistry: 'http://registry.npmjs.org',
Expand Down