lib/tasks/gem_release.rake in cf-5.2.1.rc14 vs lib/tasks/gem_release.rake in cf-5.2.1.rc15

- old
+ new

@@ -52,9 +52,11 @@ end Gem::Specification.load("cf.gemspec").version.to_s end def trigger_windows_executable_build - print_with_purpose "Triggering build of Windows executable..." - sh!("curl -X POST https://frontend-jenkins.cf-app.com/job/CLI-Windows-Build/build -u ci:clone7adhere --insecure --silent") + print_with_purpose "Triggering build of Windows executable on Jenkins..." + print "Please enter Jenkins password: " + password = STDIN.gets.strip + sh!("curl -X POST https://frontend-jenkins.cf-app.com/job/CLI-Windows-Build/build -u ci:#{password} --insecure --silent") end end