暂时取消js

main
阳光少年 1 year ago
parent 91766b89c4
commit e35b1b6b6e

@ -3,7 +3,7 @@ import sys
import subprocess import subprocess
import traceback import traceback
TARGET_LANGUAGE = set(["python", "cpp", "go", "node", "rust"]) TARGET_LANGUAGE = set(["python", "cpp", "go", "rust"])
PROJECT_PATH = "/home/rocker/project" PROJECT_PATH = "/home/rocker/project"
def go_handler(): def go_handler():
@ -69,6 +69,8 @@ def main():
elif language == "rust": elif language == "rust":
err, main_path = rust_handler() err, main_path = rust_handler()
cmd.extend([main_path]) cmd.extend([main_path])
elif language == "javascript":
node_handler()
else: else:
... ...

Loading…
Cancel
Save