Skip to content

Commit 82e85c3

Browse files
authored
Merge pull request #108 from matejak/no_terminator
Removed terminator from chmod to increase MacOS compatibility.
2 parents 54a2fc3 + 3010be0 commit 82e85c3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Buxfixes:
55

66
* Fixed typo in `argbash-init` and updated obsolete/incaccurate hints (#97).
77
* Fixed incorrect permission of non-script output files (#104).
8+
* Increased MacOS compatibility by removing terminator from the `chmod` invocation (#107).
89

910

1011
2.8.1 (2019-06-30)

src/argbash-init.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ else
230230
do_script_separate "$parsing_library_file" > "$outfname"
231231
fi
232232
fi
233-
chmod a+x -- "$outfname"
233+
chmod a+x "$outfname"
234234
fi
235235

236236
# ]dnl

0 commit comments

Comments
 (0)