Skip to content

Commit 35bcb1d

Browse files
committed
Indentation fix
1 parent 1ac05cc commit 35bcb1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/process_wrap.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ class ProcessWrap : public HandleWrap {
163163
// options.cwd
164164
Local<Value> cwd_v = js_options->Get(String::NewSymbol("cwd"));
165165
String::Utf8Value cwd(cwd_v->IsString() ? cwd_v : Local<Value>());
166-
if (cwd.length() > 0) {
166+
if (cwd.length() > 0) {
167167
options.cwd = *cwd;
168-
}
168+
}
169169

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

0 commit comments

Comments
 (0)