Open LuoDiKaiHua opened 3 years ago
"cmd": "kotlinc \"${file}\" -include-runtime -d ${file_base_name}.jar || exit 1; java -jar ${file_base_name}.jar"
The above command will not run "java -jar ${file_base_name}.jar" on Windows. It seems to be modified to the following to work.
"cmd": "(kotlinc \"${file}\" -include-runtime -d ${file_base_name}.jar || exit 1) && java -jar ${file_base_name}.jar",
I tested it on Windows and CentOS.😃
The above command will not run "java -jar ${file_base_name}.jar" on Windows. It seems to be modified to the following to work.
I tested it on Windows and CentOS.😃