mirror of https://github.com/sbt/sbt.git
Merge pull request #82 from netvl/lines-loop-fix
Fixed incorrect sbtopts lines processing
This commit is contained in:
commit
80616ea412
|
|
@ -131,7 +131,7 @@ process_my_args () {
|
|||
}
|
||||
|
||||
loadConfigFile() {
|
||||
for line in $(cat "$1" | sed '/^\#/d'); do
|
||||
cat "$1" | sed '/^\#/d' | while read line; do
|
||||
eval echo $line
|
||||
done
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue