From 60a48af9bee5289d4335475aef7c230cf3b40096 Mon Sep 17 00:00:00 2001 From: Dean Brettle Date: Wed, 4 Jul 2018 22:09:27 -0700 Subject: [PATCH] :shirt: Remove trailing space to fix lint error --- src/update-process-env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/update-process-env.js b/src/update-process-env.js index 1d9ace5e7..d44321bd7 100644 --- a/src/update-process-env.js +++ b/src/update-process-env.js @@ -13,7 +13,7 @@ const PLATFORMS_KNOWN_TO_WORK = new Set([ 'linux' ]) -// Shell command that returns env var=value lines separated by \0s so that +// Shell command that returns env var=value lines separated by \0s so that // newlines are handled properly const ENV_COMMAND = 'command awk \'BEGIN{for(v in ENVIRON) printf("%s=%s\\0",v,ENVIRON[v])}\''