diff --git a/Makefile b/Makefile index 719529575..de33b42da 100644 --- a/Makefile +++ b/Makefile @@ -107,7 +107,7 @@ else ifeq ($(BRANCH_EXISTS), 0) @echo "Error: branch ${BRANCH_NAME} already exists" else - @echo $(NEXT_VER) | grep -Eq ^v[0-9]+\.[0-9]+\.[0-9]+$ || echo "The next version, '$(NEXT_VER)' is not of the form vMAJOR.MINOR.PATCH" && exit 1 + @echo $(NEXT_VER) | grep -Eq ^v[0-9]+\.[0-9]+\.[0-9]+$ || (echo "The next version, '$(NEXT_VER)' is not of the form vMAJOR.MINOR.PATCH" && exit 1) git checkout -b $(BRANCH_NAME) origin/master @echo "Applying changes" @for file in $(shell grep -rPl --include="*.go" --include="*.json" $(MATCH)); do \ diff --git a/config/deployer.sample.json b/config/deployer.sample.json index 3cc66f13d..29559df1b 100644 --- a/config/deployer.sample.json +++ b/config/deployer.sample.json @@ -45,7 +45,7 @@ "AdminEmail": "sysadmin@sample.mattermost.com", "AdminUsername": "sysadmin", "AdminPassword": "Sys@dmin-sample1", - "LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.8.0/mattermost-load-test-ng-v1.8.0-linux-amd64.tar.gz", + "LoadTestDownloadURL": "https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.9.0/mattermost-load-test-ng-v1.9.0-linux-amd64.tar.gz", "LogSettings": { "EnableConsole": true, "ConsoleLevel": "INFO", diff --git a/deployment/config.go b/deployment/config.go index 4c19de850..917e6f35a 100644 --- a/deployment/config.go +++ b/deployment/config.go @@ -69,7 +69,7 @@ type Config struct { // URL from where to download load-test-ng binaries and configuration files. // The configuration files provided in the package will be overridden in // the deployment process. - LoadTestDownloadURL string `default:"https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.8.0/mattermost-load-test-ng-v1.8.0-linux-amd64.tar.gz" validate:"url"` + LoadTestDownloadURL string `default:"https://github.com/mattermost/mattermost-load-test-ng/releases/download/v1.9.0/mattermost-load-test-ng-v1.9.0-linux-amd64.tar.gz" validate:"url"` ElasticSearchSettings ElasticSearchSettings JobServerSettings JobServerSettings LogSettings logger.Settings