9 lines
88 B
Bash
Executable File
9 lines
88 B
Bash
Executable File
#! /usr/bin/bash
|
|
|
|
if [ -s dist ]; then
|
|
cd dist
|
|
node server.js
|
|
else
|
|
./build
|
|
$0
|
|
fi |