mirror of
https://github.com/MeiK2333/river.git
synced 2025-11-04 14:49:40 +08:00
12 lines
156 B
Bash
Executable File
12 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Hello World!"
|
|
# create judge dir
|
|
mkdir -p /river/runner
|
|
|
|
cd /plugins/js
|
|
npm install
|
|
npm install -g ts-node typescript
|
|
|
|
echo "Hello World!"
|