diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org> | 2011-09-23 05:23:01 +0200 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org> | 2011-09-23 05:23:01 +0200 |
commit | 13660734e81a8d35c7204fe05fb26068ad7bd19f (patch) | |
tree | 74d96e089088c7fe7bfd5433bb44873aaf2dfa6d | |
parent | c83131e33c4c0138033c439da91fd3e257a75c1a (diff) | |
download | portage-13660734e81a8d35c7204fe05fb26068ad7bd19f.tar.gz portage-13660734e81a8d35c7204fe05fb26068ad7bd19f.tar.bz2 portage-13660734e81a8d35c7204fe05fb26068ad7bd19f.zip |
Fix 'shopt: +s: invalid shell option name' error.
-rwxr-xr-x | bin/misc-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 7d858a28a..a54ce2b79 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -996,7 +996,7 @@ install_hooks() { ret=$(( $ret | $? )) fi done - shopt +s nullglob + shopt -u nullglob return $ret } |