1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

[syslinux] support ISOs that use boot.bin instead of isolinux.bin

* Such as WebConverger (webc-35.1.iso)
* Also fix non installation of Syslinux if Alt-E (dual UEFI/BIOS) is set
* Also update README and AppVeyor script
This commit is contained in:
Pete Batard 2016-08-07 18:41:47 +02:00
parent 19536ddd1a
commit e7578bc12d
6 changed files with 23 additions and 22 deletions

View file

@ -2,12 +2,9 @@ os: Visual Studio 2015
init:
- ps: >-
if ($env:appveyor_repo_tag -eq "true")
{
if ($env:appveyor_repo_tag -eq "true") {
Update-AppveyorBuild -Version "$env:appveyor_repo_tag_name"
}
else
{
} else {
Update-AppveyorBuild -Version "dev-$($env:appveyor_repo_commit.substring(0,7))"
}