Unverified Commit cfa43f30 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #207179 from lionello/pulumi-bin-3.50.1

pulumi-bin: 3.49.0 -> 3.51.1
parents 6ed8578a c68f4747
Loading
Loading
Loading
Loading
+105 −105

File changed.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
# shellcheck shell=bash
# Bash 3 compatible for Darwin

if [ -z "${GITHUB_TOKEN}" ]; then
  echo >&2 "usage: GITHUB_TOKEN=… ./update.sh"
if [ -z "${GITHUB_TOKEN}" ] || [ $# -ne 1 ]; then
  echo >&2 "usage: GITHUB_TOKEN=… ./update.sh pulumi-version"
  exit 1
fi

@@ -12,7 +12,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

# Version of Pulumi from
# https://www.pulumi.com/docs/get-started/install/versions/
VERSION="3.49.0"
VERSION=$1

# An array of plugin names. The respective repository inside Pulumi's
# Github organization is called pulumi-$name by convention.