mirror of
https://github.com/MeiK2333/river.git
synced 2025-11-04 14:49:40 +08:00
13 lines
166 B
Bash
13 lines
166 B
Bash
#!/bin/sh
|
|
|
|
echo "Hello World!"
|
|
# create judge dir
|
|
mkdir -p /river/runner
|
|
|
|
# add to path
|
|
export PATH=$PATH:/plugins/js
|
|
cd /plugins/js
|
|
npm install
|
|
|
|
echo "Hello World!"
|