diff options
author | Girish Ramakrishnan <girish@forwardbias.in> | 2015-11-27 16:09:06 -0800 |
---|---|---|
committer | Girish Ramakrishnan <girish@forwardbias.in> | 2015-11-27 16:09:06 -0800 |
commit | 9d2701fe372975dd39d8a7834ffd9a7690dd0622 (patch) | |
tree | 5c697b75fdb5e7e4ed292abd96585dfebd4a7452 | |
parent | 1c20715d8249ae081aae56f27e12e225282e9e38 (diff) | |
download | Surfer-9d2701fe372975dd39d8a7834ffd9a7690dd0622.tar.gz Surfer-9d2701fe372975dd39d8a7834ffd9a7690dd0622.tar.zst Surfer-9d2701fe372975dd39d8a7834ffd9a7690dd0622.zip |
do not add extra newline
-rw-r--r-- | cli/actions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/actions.js b/cli/actions.js index 735b631..954ca6b 100644 --- a/cli/actions.js +++ b/cli/actions.js | |||
@@ -139,7 +139,7 @@ function get(filePath) { | |||
139 | console.log('\t %s', entry); | 139 | console.log('\t %s', entry); |
140 | }); | 140 | }); |
141 | } else { | 141 | } else { |
142 | console.log(body); | 142 | process.stdout.write(body); |
143 | } | 143 | } |
144 | }); | 144 | }); |
145 | // var req = superagent.get(config.server() + API + filePath); | 145 | // var req = superagent.get(config.server() + API + filePath); |