forked from jvilk/BrowserFS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Vilk
committed
Nov 20, 2016
1 parent
40f33f8
commit eb0155e
Showing
9 changed files
with
1,324 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/sh | ||
# Creates ISO files for testing the ISOFS. | ||
# Not auto-generated during the testing process to avoid a hard | ||
# dependency on ISO-building tools. | ||
|
||
# package.json is included in both so the proper directory structure | ||
# is generated. | ||
|
||
# NOTE: -graft-points doesn't work on newer versions of Mac OSX. | ||
# So we have a gigantic exclusion list. | ||
|
||
# Usage: make_iso flags filename | ||
make_iso () { | ||
mkisofs $1 -o $2 -m 'node_modules' -m '.git' -m '.tscache' -m '.vscode' -m 'build' -m 'dist' -m 'scripts' -m 'src' -m 'tests' -m 'harness' -m '*.pem' -m '*.json' -m '*.zip' -m '*.iso' . | ||
} | ||
|
||
# -J: Joliet | ||
# -D: Ignore 7 directory limit. | ||
make_iso -JD test/fixtures/isofs/test_joliet.iso | ||
|
||
|
||
# -hide-rr-moved: | ||
# -R: Enable Rock Ridge | ||
make_iso "-R -hide-rr-moved" test/fixtures/isofs/test_rock_ridge.iso |
Oops, something went wrong.