Skip to content

Commit 8bff35c

Browse files
authored
Merge pull request #13561 from eszense/darwin-iso-patch
Use ISO 9660 format in create_iso under darwin
2 parents ca0f42d + be4ef73 commit 8bff35c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/hosts/darwin/cap/fs_iso.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def self.create_iso(env, source_directory, extra_opts={})
3636
source_directory = Pathname.new(source_directory)
3737
file_destination = self.ensure_output_iso(extra_opts[:file_destination])
3838

39-
iso_command = [BUILD_ISO_CMD, "makehybrid", "-hfs", "-iso", "-joliet", "-ov"]
39+
iso_command = [BUILD_ISO_CMD, "makehybrid", "-iso", "-joliet", "-ov"]
4040
iso_command.concat(["-default-volume-name", extra_opts[:volume_id]]) if extra_opts[:volume_id]
4141
iso_command << "-o"
4242
iso_command << file_destination.to_s

0 commit comments

Comments
 (0)