forked from matrix/element-web
Merge pull request #9517 from vector-im/dbkr/fix_deploy_script_include_default
Fix default for --include arg
This commit is contained in:
commit
597b3e16e0
|
@ -166,7 +166,7 @@ if __name__ == "__main__":
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--include", nargs='*', default='./config*.json', help=(
|
"--include", nargs='*', default=['./config*.json'], help=(
|
||||||
"Symlink these files into the root of the deployed tarball. \
|
"Symlink these files into the root of the deployed tarball. \
|
||||||
Useful for config files and home pages. Supports glob syntax. \
|
Useful for config files and home pages. Supports glob syntax. \
|
||||||
(Default: '%(default)s')"
|
(Default: '%(default)s')"
|
||||||
|
|
Loading…
Reference in New Issue