diff options
author | Mark Ferrell <major@homeonderanged.org> | 2014-04-08 08:01:02 -0700 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2014-04-08 08:01:02 -0700 |
commit | 353ef2d9df137e894fa7744206d2df911692c0ac (patch) | |
tree | 1dad031226f8e6b36e56a2e6b23e863d413acf4f | |
parent | 47995b0219a24d7a7219fa21c6ebdfc689b601c7 (diff) |
Remove --target option to build
* The reason for this option has been effectively lost to time, and is
effectively no longer necessary. The original reason it existed will be
replaced with a --config option in the future.
-rwxr-xr-x | build | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -124,15 +124,6 @@ BUILDER_DEBUG=0 while [ "$#" -gt "0" ]; do case "$1" in (-v|-version|--version) version; exit 0;; - (-t|-target|--target) - shift 1 - if [ "$#" -eq "0" ]; then - echo "error: no target specified" >&2 - exit 1 - fi - BUILDER_TARGET="${1}" - shift 1 - ;; (-d|-debug|--debug) BUILDER_DEBUG=1 set -x |