#!/bin/sh

#If startup command is defined use it
if ! test -z "$MYCROFT_START_CMD"; then
	$MYCROFT_START_CMD
else
	# Use default git install location
	cd "~/mycroft-core" || exit
	./start-mycroft.sh all
fi

