From 5b7594ab334f02883b90e4fd9e8d00201572f82e Mon Sep 17 00:00:00 2001 From: Luke Inman-Semerau Date: Tue, 15 Mar 2016 10:30:27 -0700 Subject: [PATCH] fix the publish command for push_release task --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index dda627e4905ca..d58333aab3346 100644 --- a/Rakefile +++ b/Rakefile @@ -596,7 +596,7 @@ task :push_release => [:release] do py = "python" end - sh "#{py} third_party/py/googlestorage/publish_release.py --project_id google.com:webdriver --bucket selenium-release --acl public-read --publish_version #{release_version} --publish build/dist/selenium-server-standalone-#{version}.jar build/dist/selenium-server-#{version}.zip build/dist/selenium-java-#{version}.zip" + sh "#{py} third_party/py/googlestorage/publish_release.py --project_id google.com:webdriver --bucket selenium-release --acl public-read --publish_version #{release_version} --publish build/dist/selenium-server-standalone-#{version}.jar --publish build/dist/selenium-server-#{version}.zip --publish build/dist/selenium-java-#{version}.zip" end desc 'Build the selenium client jars'