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