diff --git a/install.ps1 b/install.ps1 index 3cc5a3d..92b540a 100644 --- a/install.ps1 +++ b/install.ps1 @@ -19,8 +19,7 @@ param( ), [string]$Target = $env:CLOUDSMITH_CLI_TARGET, [string]$OutputFile = $env:CLOUDSMITH_CLI_OUTPUT_FILE, - # TODO: revert to the production repository before release. - [string]$Repository = $(if ($env:CLOUDSMITH_CLI_REPOSITORY) { $env:CLOUDSMITH_CLI_REPOSITORY } else { "bart-demo-org-terraform/cli-binary-release-test" }), + [string]$Repository = $(if ($env:CLOUDSMITH_CLI_REPOSITORY) { $env:CLOUDSMITH_CLI_REPOSITORY } else { "cloudsmith/cli" }), [string]$ManifestUrl = $env:CLOUDSMITH_CLI_MANIFEST_URL, [switch]$Force ) diff --git a/install.sh b/install.sh index 3288337..4fb9ed1 100755 --- a/install.sh +++ b/install.sh @@ -10,8 +10,7 @@ PROGRAM="install.sh" # Where releases are downloaded from. Flags and CLOUDSMITH_CLI_* environment # variables override the defaults; --manifest-url bypasses URL construction. DOWNLOAD_BASE_URL="https://dl.cloudsmith.io/public" -# TODO: revert to the production repository before release. -DEFAULT_REPOSITORY="bart-demo-org-terraform/cli-binary-release-test" +DEFAULT_REPOSITORY="cloudsmith/cli" MANIFEST_NAME_PREFIX="cloudsmith-cli-manifest" REPOSITORY="${CLOUDSMITH_CLI_REPOSITORY:-$DEFAULT_REPOSITORY}"