We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70fe8e4 commit 927f349Copy full SHA for 927f349
1 file changed
Setup.iss
@@ -167,13 +167,15 @@ var
167
FileCopyResult: Boolean;
168
begin
169
// Extract necessary files to temp directory
170
- if not ExtractTemporaryFile('getlist.bat') then
171
- begin
+ try
+ ExtractTemporaryFile('getlist.bat');
172
+ except
173
Log('Warning: Failed to extract getlist.bat to temporary directory');
174
end;
175
- if not ExtractTemporaryFile('gpulist.txt') then
176
177
+ ExtractTemporaryFile('gpulist.txt');
178
179
Log('Warning: Failed to extract gpulist.txt to temporary directory');
180
181
0 commit comments