6 lines
71 B
Bash
6 lines
71 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
echo "starting link"
|
|
exec dumb-init npm run start
|
|
|