decaffeinate: Rename CommandRunner.coffee and 25 other files from .coffee to .js

This commit is contained in:
decaffeinate
2020-02-19 12:14:01 +01:00
committed by mserranom
parent f8fff476dd
commit 37794788ce
26 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
Settings = require "settings-sharelatex"
logger = require "logger-sharelatex"
if Settings.clsi?.dockerRunner == true
commandRunnerPath = "./DockerRunner"
else
commandRunnerPath = "./LocalCommandRunner"
logger.info commandRunnerPath:commandRunnerPath, "selecting command runner for clsi"
CommandRunner = require(commandRunnerPath)
module.exports = CommandRunner