pulumi/scripts/install.sh
joeduffy 4ef4eba01a Remove SDK dependencies
This change eliminates our dependencies on the SDK repo.  Now that
SDKs are comprised solely of pulumi/pulumi artifacts, a separate repo
isn't required.  This allows us to simplify some of the distribution.

The install.sh script is modified slightly, to permit overriding the
default install location using $PULUMI_INSTALL_PATH.
2018-04-30 16:39:17 -07:00

11 lines
248 B
Bash
Executable file

#!/bin/bash
# install.sh installs an existing release.
set -e
INSTALL=$GOPATH/src/github.com/pulumi/home/scripts/install.sh
if [ ! -f $PUBLISH ]; then
>&2 echo "error: Missing publish script at $INSTALL"
exit 1
fi
${INSTALL} pulumi $1 $2