File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -156,16 +156,18 @@ jobs:
156
156
uses : actions/checkout@v4
157
157
158
158
- name : Download ImDisk
159
- shell : powershell
159
+ shell : bash
160
160
run : |
161
- $url = "https://sourceforge.net/projects/imdisk-toolkit/files/20241123/ImDiskTk-x64.zip/download"
162
- Invoke-WebRequest -Uri $url -OutFile "ImDiskTk.zip"
163
- Expand-Archive -Path "ImDiskTk.zip" -DestinationPath "ImDiskTk"
161
+ mkdir imdisk
162
+ cd imdisk
163
+ curl -L -o files.cab https://imdisk-ci-files.pages.dev/ImDiskTk20241123/files.cab
164
+ curl -L -o install.bat https://imdisk-ci-files.pages.dev/ImDiskTk20241123/install.bat
165
+ cd ..
164
166
165
167
- name : Install ImDisk
166
168
shell : cmd
167
169
run : |
168
- cd ImDiskTk
170
+ cd imdisk
169
171
install.bat /silent
170
172
171
173
- name : Create RAM Disk
You can’t perform that action at this time.
0 commit comments