This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -o errexit | |
set -e | |
# Fail fast if we're not on OS X >= 10.6.0. | |
if [ "$(uname -s)" != "Darwin" ]; then | |
echo "Sorry, DevDNS requires Mac OS X to run." >&2 | |
exit 1 |