Ignore lines beginning with '#' and empty lines
This commit is contained in:
parent
3627833f61
commit
59156d031c
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ do
|
||||||
;;
|
;;
|
||||||
-f)
|
-f)
|
||||||
shift
|
shift
|
||||||
MODULES=($(cat $1))
|
MODULES=($(cat $1 | grep -v '^#'| sed -e '/^[[:blank:]]*$/d'))
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
--)
|
--)
|
||||||
|
|
Loading…
Reference in a new issue