Skip to content

Commit

Permalink
feat: unpin ui to point at latest (#23704)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyssmith2nd authored and jsternberg committed Sep 13, 2022
1 parent b87deb4 commit 485968c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/fetch-ui-assets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# This script is used to download built UI assets from the "influxdata/ui"
# repository. The built UI assets are attached to a release in "influxdata/ui",
# which is linked here.
#
#
# The master branch of "influxdata/influxdb" (this repository) downloads from the
# release tagged as "OSS-Master" in "influxdata/ui". That release is kept up-to-date
# with the most recent changes in "influxdata/ui".
#
# with the most recent changes in "influxdata/ui".
#
# Feature branches of "influxdata/influxdb" (2.0, 2.1, etc) download from their
# respective releases in "influxdata/ui" (OSS-2.0, OSS-2.1, etc). Those releases
# are updated only when a bug fix needs included for the UI of that OSS release.
Expand All @@ -21,10 +21,10 @@ declare -r STATIC_DIR="$ROOT_DIR/static"
# Download the SHA256 checksum attached to the release. To verify the integrity
# of the download, this checksum will be used to check the download tar file
# containing the built UI assets.
curl -Ls https://github.com/influxdata/ui/releases/download/OSS-Master/sha256.txt --output sha256.txt
curl -Ls https://github.com/influxdata/ui/releases/download/OSS-2022-09-01/sha256.txt --output sha256.txt

# Download the tar file containing the built UI assets.
curl -L https://github.com/influxdata/ui/releases/download/OSS-Master/build.tar.gz --output build.tar.gz
curl -L https://github.com/influxdata/ui/releases/download/OSS-2022-09-01/build.tar.gz --output build.tar.gz

# Verify the checksums match; exit if they don't.
case "$(uname -s)" in
Expand Down

0 comments on commit 485968c

Please sign in to comment.