diff --git a/build b/build new file mode 100755 index 0000000..8fa6107 --- /dev/null +++ b/build @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +function print_help { + echo "Resume Build Utility" + echo "usage: ./build resume pdf" + echo "usage: ./build resume html [package, deploy]" + echo "usage: ./build coverletter pdf " + echo "usage: ./build combined pdf " +} + +if [ -z "$1" ]; then + echo "Must supply a build command" + print_help +fi + +case "$1" in + "resume") + ;; + "coverletter") + ;; + "combined") + ;; + *) + print_help + ;; +esac