-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Actually make -print-skip print a valid bash script
Previously it was only valid with zsh; seems bash really wants those curly braces.
- Loading branch information
Showing
3 changed files
with
7 additions
and
10 deletions.
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
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 |
---|---|---|
@@ -1,7 +1,4 @@ | ||
{ | ||
"regex2": {"type": "string", "value": "I [dw]on't need \\d{2} apples"}, | ||
"lines": { | ||
"type": "string", | ||
"value": "The first newline is\ntrimmed in raw strings.\n All other whitespace\n is preserved.\n" | ||
} | ||
"lines": {"type": "string", "value": "The first newline is\ntrimmed in raw strings.\n All other whitespace\n is preserved.\n"}, | ||
"regex2": {"type": "string", "value": "I [dw]on't need \\d{2} apples"} | ||
} |