summaryrefslogtreecommitdiff
path: root/LangDetect Shell.sh
blob: d5fadc6b4ec245dab45e876bf7d64acb3cb7aafb (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
if [[ "$(uname)" = "Darwin" ]]; then
	# macOS
	./bin/darwin ./index.js interactive
else
	# Linux/BSD/...
	./bin/linux ./index.js interactive
fi