fix: hard link environment variable (#20467)
On docker based deploys symlinking inside volume doesn't work. [skip ci]
This commit is contained in:
parent
86f7219525
commit
f089e9108e
1 changed files with 5 additions and 1 deletions
|
|
@ -24,7 +24,11 @@ EXTRA_ARGS_CTX = {"ignore_unknown_options": True, "allow_extra_args": True}
|
|||
@click.option("--app", help="Build assets for app")
|
||||
@click.option("--apps", help="Build assets for specific apps")
|
||||
@click.option(
|
||||
"--hard-link", is_flag=True, default=False, help="Copy the files instead of symlinking"
|
||||
"--hard-link",
|
||||
is_flag=True,
|
||||
default=False,
|
||||
help="Copy the files instead of symlinking",
|
||||
envvar="FRAPPE_HARD_LINK_ASSETS",
|
||||
)
|
||||
@click.option(
|
||||
"--make-copy",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue