Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Apr 30, 2012
1 parent f6ff0d6 commit 449f6d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/process_wrap.cc
Expand Up @@ -163,9 +163,9 @@ class ProcessWrap : public HandleWrap {
// options.cwd
Local<Value> cwd_v = js_options->Get(String::NewSymbol("cwd"));
String::Utf8Value cwd(cwd_v->IsString() ? cwd_v : Local<Value>());
if (cwd.length() > 0) {
if (cwd.length() > 0) {
options.cwd = *cwd;
}
}

// options.env
Local<Value> env_v = js_options->Get(String::NewSymbol("envPairs"));
Expand Down

0 comments on commit 449f6d6

Please sign in to comment.