river/plugins/build.sh
2020-11-06 14:03:29 +08:00

15 lines
258 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
echo "Hello World!"
# create judge dir
mkdir -p /river/runner
# 运行的上层目录创建 node_modules以便 Node 与 TypeScript 使用
cd /river/runner
npm i
cd /plugins/js
npm install
npm install -g ts-node typescript
echo "Hello World!"