uebersicht-github-activity/run.sh

10 lines
218 B
Bash
Raw Permalink Normal View History

2017-02-11 00:23:33 +00:00
#! /bin/bash
if [ -f /usr/local/bin/node ]; then
# If node is installed via Homebrew, use it
/usr/local/bin/node ./GithubActivity/src/generate.js
2017-02-11 00:23:33 +00:00
else
# Fallback to normal
node ./GithubActivity/src/generate.js
2017-02-11 00:23:33 +00:00
fi