Compare commits
3 commits
be59de5d4a
...
510964519b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
510964519b | ||
|
|
90c20e17d1 | ||
|
|
ba210947eb |
3 changed files with 7 additions and 5 deletions
|
|
@ -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");
|
||||
|
|
|
|||
5
dist/cpinstaller.js
vendored
5
dist/cpinstaller.js
vendored
|
|
@ -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");
|
||||
|
|
|
|||
2
dist/cpinstaller.min.js
vendored
2
dist/cpinstaller.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue