Joshua reports that npm run dev does not work on DigitalOcean. It returns an error:
> [email protected] dev
> source ./@build-ursys.sh && brunch w -s
sh: 1: source: not found
echo $SHELL reveals /bin/bash yet source does not work.
However, changing the dev script to use . instead of source seems to work. In package.json from PR #230 change line 10 from "dev": "source ./@build-ursys.sh && brunch w -s", to
"dev": ". ./@build-ursys.sh && brunch w -s"
And then run npm run dev seems to work.
@dsriseah Any suggestions on a proper solution?