10 lines
74 B
Bash
10 lines
74 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "
|
|
Running node script $1
|
|
"
|
|
|
|
node $1 >/tmp/log.txt
|