This file contains hidden or 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/bash | |
# vim: softtabstop=4 shiftwidth=4 expandtab fenc=utf-8 spell spelllang=en cc=120 | |
set -e | |
# Check Ubuntu release | |
[ "$(lsb_release -sc)" = "trusty" ] || { | |
echo 'This script should be run on Ubuntu 14.04.' >&2 | |
exit 1 | |
} |