style(GUI): fix small chain indentation issue (#1150)

I couldn't find an ESLint rule that would protect us from this in the
future.

See: https://github.com/resin-io/etcher/pull/1148#discussion_r103525165
Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
Juan Cruz Viotti 2017-03-01 18:52:29 -04:00 committed by GitHub
parent 4172291a10
commit dfd5f70013

View File

@ -108,8 +108,8 @@ return isElevated().then((elevated) => {
}); });
return commandPrefix return commandPrefix
.concat([ process.env.APPIMAGE ]) .concat([ process.env.APPIMAGE ])
.concat(translatedArguments); .concat(translatedArguments);
} }
return commandPrefix.concat(process.argv); return commandPrefix.concat(process.argv);