Commit 5020bb83 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Changed non-portable sed zero-or-one (?) match to {0,1}

parent 864929d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ _get_config_section ()
	set -o noglob
	IFS=$'\n' sections=( `git config --list \
		| grep -e '^auto-build' \
		| sed -e 's/=.*//' -e 's/\.[^.]*$//' -e 's/^auto-build\.\?//' \
		| sed -e 's/=.*//' -e 's/\.[^.]*$//' -e 's/^auto-build\.\{0,1\}//' \
		| sort -ur
		` )
	set +o noglob