From 36a534532736498ff8f80a232ed04f2af6955b8d Mon Sep 17 00:00:00 2001 From: Drew Short Date: Thu, 21 Jan 2016 23:05:44 -0600 Subject: [PATCH] Working on unified build script entry point --- build | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 build 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