Added support for --include-build.
--- a/.bash_completion.d/gradle Sun May 06 15:11:56 2018 +0300
+++ b/.bash_completion.d/gradle Mon May 07 12:17:32 2018 +0300
@@ -18,7 +18,7 @@
local _opts="-? -h --help -A --dep-tasks -C --cache -D --system-prop -I --init-script -P --project-prop -S --full-stacktrace -a --no-rebuild --all \
-b --build-file -c --settings-file -d --debug -e --embedded -g --gradle-user-home --gui -i --info -m --dry-run --no-opt -p --project-dir \
-q --quiet -r --properties -s --stacktrace -t --tasks -u --no-search-upward -v --version -x --exclude-task \
- --continue --foreground --no-color --project-cache-dir --recompile-scripts --refresh --refresh-dependencies \
+ --continue --foreground --no-color --project-cache-dir --include-build --recompile-scripts --refresh --refresh-dependencies \
--daemon --no-daemon --offline --build-cache --parallel --parallel-threads --profile --status \
--rerun-tasks --stop"
local _application_cmds='run startScripts installApp distZip distTar'
@@ -167,7 +167,7 @@
-I|--init-script|-b|--build-file|-c|--settings-file|-e|--embedded)
COMPREPLY=( $(compgen -f -- "$cur") )
IFS=$OIFS; return ;;
- -g|--gradle-user-home|-p|--project-dir|--project-cache-dir)
+ -g|--gradle-user-home|-p|--project-dir|--project-cache-dir|--include-build)
COMPREPLY=( $(compgen -d -- "$cur") )
IFS=$OIFS; return ;;
esac