File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 39
39
# # This library is implemented for bash version 4. Prior versions of
40
40
# # bash will fail at interpreting that code.
41
41
# # @note
42
- # # The extglob shell option will be enabled when loading the
43
- # # library. Disabling it afterwards will make the library execution
44
- # # fail.
42
+ # # The extglob shell option will be enabled and posix mode will be
43
+ # # disabled when loading the library. Changing those settings
44
+ # # afterwards will make the library execution fail.
45
45
#
46
46
# # @par Usage
47
47
# # Use the argsparse_use_option() function to declare your options with
@@ -282,6 +282,7 @@ declare -r ARGSPARSE_VERSION=1.6.2
282
282
283
283
# Enable required features
284
284
shopt -s extglob
285
+ set +o posix
285
286
286
287
# This is an associative array. It should contains records of the form
287
288
# "something" -> "Some usage description string".
You can’t perform that action at this time.
0 commit comments