6 lines
111 B
Bash
6 lines
111 B
Bash
|
#!/bin/sh
|
||
|
echo "Starting runner"
|
||
|
export PATH=$PATH:/usr/lib/sdk/node16/bin
|
||
|
npm rum start
|
||
|
echo "Exiting runner"
|