0

Running this command to create an iso on macOS:

hdiutil makehybrid -o ~/Desktop/test.iso ~/Documents/files/ -iso

When mounting the iso all files in the directory are in upper case.

How can I stop case-sensitivity from changing with this command?

Cœur
  • 37,241
  • 25
  • 195
  • 267
LightningWar
  • 915
  • 1
  • 19
  • 35

1 Answers1

1

As suggested by Mark Setchell: the addition of -joliet:

hdiutil makehybrid -o ~/Desktop/test.iso ~/Documents/files/ -joliet -iso

Maintains case sensitivity when creating the iso.

LightningWar
  • 915
  • 1
  • 19
  • 35