From 08f6602389aefa3c7d578423001dc38a1a2b2a28 Mon Sep 17 00:00:00 2001 From: William Chargin Date: Wed, 29 Aug 2018 16:51:28 -0700 Subject: [PATCH] build_static_site.sh: add --feedback-url help text (#722) Summary: This improves the documentation for the change made in #715. Test Plan: Note that `./scripts/build_static_site.sh --help` and `yarn sharness` pass. wchargin-branch: feedback-url-help-text --- scripts/build_static_site.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/build_static_site.sh b/scripts/build_static_site.sh index 13d7c04..e9bb334 100755 --- a/scripts/build_static_site.sh +++ b/scripts/build_static_site.sh @@ -4,6 +4,7 @@ set -eu usage() { printf 'usage: build_static_site.sh --target TARGET\n' printf ' [--repo OWNER/NAME [...]]\n' + printf ' [--feedback-url URL]\n' printf ' [--cname DOMAIN]\n' printf ' [-h|--help]\n' printf '\n' @@ -14,6 +15,8 @@ usage() { printf '%s\n' '--repo OWNER/NAME' printf '\t%s\n' 'a GitHub repository (e.g., torvalds/linux) for which' printf '\t%s\n' 'to include example data' + printf '%s\n' '--feedback-url URL' + printf '\t%s\n' 'link for user feedback, shown on the prototype page' printf '%s\n' '--cname DOMAIN' printf '\t%s\n' 'configure DNS for a GitHub Pages site to point to' printf '\t%s\n' 'the provided custom domain'