File tree 1 file changed +3
-8
lines changed
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 19
19
"""
20
20
Implementation for cloe-launch command deploy.
21
21
22
- Usage: cloe-launch [-v] deploy [-c] [-f] [-r] [- D PATH] CONANFILE [CONAN_INSTALL_ARGS]
22
+ Usage: cloe-launch [-v] deploy [-D PATH] CONANFILE [CONAN_INSTALL_ARGS]
23
23
"""
24
24
25
25
import sys
42
42
help = "Destination directory, for example /usr/local." ,
43
43
prompt = "Destination directory" ,
44
44
)
45
- @click .option (
46
- "-f" ,
47
- "--force" ,
48
- is_flag = True ,
49
- help = "Overwrite existing files." ,
50
- )
51
45
@click .option (
52
46
"--rpath/--no-rpath" ,
53
47
is_flag = True ,
60
54
def cli_deploy (
61
55
conf : Configuration ,
62
56
dest : str ,
63
- force : bool ,
64
57
rpath : bool ,
65
58
conanfile : str ,
66
59
args : List [str ],
@@ -70,6 +63,8 @@ def cli_deploy(
70
63
This may involve downloading missing and available packages and building
71
64
outdated packages.
72
65
66
+ Existing files will be overwritten.
67
+
73
68
Usage Examples:
74
69
75
70
\b
You can’t perform that action at this time.
0 commit comments