Skip to content

Commit

Permalink
Specify custom dc release tag from install script (#2585)
Browse files Browse the repository at this point in the history
  • Loading branch information
shifucun authored Apr 19, 2023
1 parent 2849d61 commit d9259a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Binary file not shown.
7 changes: 6 additions & 1 deletion scripts/install_custom_dc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
# limitations under the License.
set -e

CUSTOM_DC_RELEASE_TAG=custom-dc-v0.3.2
CUSTOM_DC_RELEASE_TAG=$1

if [[ -z "$CUSTOM_DC_RELEASE_TAG" ]]; then
echo "Should run this script with first argument being the custom dc version tag found from https://github.com/datacommonsorg/website/tags"
exit 1
fi

# In some environments (such as Cloud Shell), IPv6 is not enabled on the OS.
# This causes problems during terraform runs. Fix is from the issue below.
Expand Down

0 comments on commit d9259a0

Please sign in to comment.