Update CHANGELOG
This commit is contained in:
parent
0c19578afa
commit
f861fbcafb
|
@ -18,6 +18,8 @@ IMPROVEMENTS:
|
||||||
|
|
||||||
- core: Support resumable downloads [GH-57]
|
- core: Support resumable downloads [GH-57]
|
||||||
- core: owner/group of shared folders can be specified by integers. [GH-2390]
|
- core: owner/group of shared folders can be specified by integers. [GH-2390]
|
||||||
|
- core: the VAGRANT\_NO\_COLOR environmental variable may be used to enable
|
||||||
|
`--no-color` mode globally. [GH-2261]
|
||||||
- commands/init: Add `--output` option for specifing output path, or
|
- commands/init: Add `--output` option for specifing output path, or
|
||||||
"-" for stdin. [GH-1364]
|
"-" for stdin. [GH-1364]
|
||||||
- commands/provision: Add `--no-parallel` option to disable provider
|
- commands/provision: Add `--no-parallel` option to disable provider
|
||||||
|
|
|
@ -35,7 +35,7 @@ opts = {}
|
||||||
# * STDOUT is not a TTY
|
# * STDOUT is not a TTY
|
||||||
# * The terminal doesn't support colors (Windows)
|
# * The terminal doesn't support colors (Windows)
|
||||||
#
|
#
|
||||||
if ARGV.include?("--no-color") or ENV["VAGRANT_NOCOLOR"]
|
if ARGV.include?("--no-color") || ENV["VAGRANT_NO_COLOR"]
|
||||||
# Delete the argument from the list so that it doesn't
|
# Delete the argument from the list so that it doesn't
|
||||||
# cause any invalid arguments down the road.
|
# cause any invalid arguments down the road.
|
||||||
ARGV.delete("--no-color")
|
ARGV.delete("--no-color")
|
||||||
|
|
Loading…
Reference in New Issue