Skip to content

Commit b1ab75b

Browse files
authored
Merge pull request #543 from andyundso/do-not-remove-ruby-setup-file
Do not remove Ruby setup file
2 parents 731a43c + b5a44a5 commit b1ab75b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ jobs:
117117
echo "Ruby Target Version Found: $target_version"
118118
119119
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
120-
Invoke-WebRequest -UseBasicParsing -uri $download_uri -OutFile ruby-setup.exe
121-
120+
Invoke-WebRequest -UseBasicParsing -uri $download_uri -OutFile C:\ruby-setup.exe
121+
122122
echo "Download finished, starting installation of $target_version"
123-
.\ruby-setup.exe /VERYSILENT /NORESTART /ALLUSERS /DIR=C:/Ruby<< parameters.ruby_version >>-x64
123+
C:\ruby-setup.exe /VERYSILENT /NORESTART /ALLUSERS /DIR=C:/Ruby<< parameters.ruby_version >>-x64
124124
125125
- run:
126126
name: ruby diagnostics
@@ -132,7 +132,6 @@ jobs:
132132
ruby --version
133133
echo "Gem Version:"
134134
gem --version
135-
rm .\ruby-setup.exe
136135
137136
- run:
138137
name: install bundler

0 commit comments

Comments
 (0)