From f785f0a858ea2a157f766f00d264333ba9b1bf9c Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Mon, 2 Apr 2018 22:39:05 +0800 Subject: [PATCH] Switch that one tab to spaces --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 6205370..f23ed36 100755 --- a/index.js +++ b/index.js @@ -398,7 +398,7 @@ app.get("/*@download", (req, res) => { const shellable = process.env.SHELL != "false" && process.env.SHELL; const cmdable = process.env.CMD != "false" && process.env.CMD; if (shellable || cmdable) { - const shellArgs = process.env.SHELL.split(" "); + const shellArgs = process.env.SHELL.split(" "); const exec = process.env.SHELL == "login" ? "/usr/bin/env" : shellArgs[0]; const args = process.env.SHELL == "login" ? ["login"] : shellArgs.slice(1);