From d141ed9812385ef30680525156efaaefa1b030e6 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Mon, 17 Jul 2017 23:13:46 -0700 Subject: [PATCH] Removes the web UI as a separately released package. Since we have this built-in via the `-ui` configuration, the only reason to use `-ui-dir` is if you are tweaking the web UI, so there's no need to release the web UI as a .zip archive separately. --- scripts/dist_build.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/scripts/dist_build.sh b/scripts/dist_build.sh index 40d5d980d6..a29aa8622b 100755 --- a/scripts/dist_build.sh +++ b/scripts/dist_build.sh @@ -33,13 +33,9 @@ if ! git diff --quiet agent/bindata_assetfs.go; then exit 1 fi -# Now we are ready to do a clean build of everything. The "all" build will blow -# away our pkg folder so we have to regenerate the ui once more. This is probably -# for the best since we have meddled with the timestamps. +# Now we are ready to do a clean build of everything. We no longer distribute the +# web UI so it's ok that gets blown away as part of this. rm -rf pkg make all -pushd ui -make dist -popd exit 0