File tree 1 file changed +18
-2
lines changed
1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,31 @@ runs:
14
14
15
15
mkdir aim
16
16
cd aim
17
- curl -L -o aim_ll.zip https://github.com/ArsenalRecon/Arsenal-Image-Mounter/raw/5961f922c5b99ec29acc4af4b60b909b402eed95/Command%20line%20applications/aim_ll.zip
17
+ curl \
18
+ --retry 5 \
19
+ --retry-delay 5 \
20
+ --fail \
21
+ --retry-all-errors \
22
+ -L \
23
+ -C - \
24
+ -o aim_ll.zip \
25
+ https://github.com/ArsenalRecon/Arsenal-Image-Mounter/raw/5961f922c5b99ec29acc4af4b60b909b402eed95/Command%20line%20applications/aim_ll.zip
18
26
echo "a628fd0bb4b1657b2b89fd8972937b4d9c4b1292ea16764208fa63fc0ce84d54 aim_ll.zip" | sha256sum --check
19
27
# unzip properly extracts everything but warns that "aim_ll.zip appears to use backslashes as path separators"
20
28
# it then exits with a non-zero status code. the warning is harmless, so we ignore it.
21
29
unzip aim_ll.zip || true
22
30
mkdir ~/bin
23
31
mv x64/* ~/bin
24
32
25
- curl -L -o DriverFiles.zip https://github.com/ArsenalRecon/Arsenal-Image-Mounter/raw/5961f922c5b99ec29acc4af4b60b909b402eed95/DriverSetup/DriverFiles.zip
33
+ curl \
34
+ --retry 5 \
35
+ --retry-delay 5 \
36
+ --fail \
37
+ --retry-all-errors \
38
+ -L \
39
+ -C - \
40
+ -o DriverFiles.zip \
41
+ https://github.com/ArsenalRecon/Arsenal-Image-Mounter/raw/5961f922c5b99ec29acc4af4b60b909b402eed95/DriverSetup/DriverFiles.zip
26
42
echo "cc03472b689f23b1c66d1764b7a12e7212146b5c1f70e2613666efcd93b97192 DriverFiles.zip" | sha256sum --check
27
43
# like above
28
44
unzip DriverFiles.zip -d DriverFiles || true
You can’t perform that action at this time.
0 commit comments