Github Action: Updated dist files

This commit is contained in:
makermelissa 2024-03-25 21:22:01 +00:00 committed by github-actions[bot]
parent 90c20e17d1
commit 510964519b
2 changed files with 4 additions and 3 deletions

5
dist/cpinstaller.js vendored
View file

@ -618,8 +618,9 @@ export class CPInstallButton extends InstallButton {
return;
}
if (bootloaderVolume && bootloaderVolume != dirHandle.name) {
alert(`The selected drive named ${dirHandle.name} does not match the expected name of ${bootloaderVolume}. Please select the correct drive.`);
return;
if (!confirm(`The selected drive named ${dirHandle.name} does not match the expected name of ${bootloaderVolume}. Continue anyways?`)) {
return;
}
}
if (!await this._verifyPermission(dirHandle)) {
alert("Unable to write to the selected folder");

File diff suppressed because one or more lines are too long