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.
This commit is contained in:
James Phillips 2017-07-17 23:13:46 -07:00 committed by Frank Schröder
parent a5e85a6f89
commit d141ed9812
1 changed files with 2 additions and 6 deletions

View File

@ -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