@@ -153,22 +153,12 @@ def teardown_runtime(runtime_dir: Path) -> None:
153
153
type = click .Path (exists = True , file_okay = True , dir_okay = True ),
154
154
help = "VTD setup to use, default to currently symlinked." ,
155
155
)
156
- @click .option (
157
- "--copy-setup" ,
158
- is_flag = True ,
159
- help = "Copy VTD setup in facade installation, instead of linking." ,
160
- )
161
156
@click .option (
162
157
"-p" ,
163
158
"--vtd-project" ,
164
159
type = click .Path (exists = True , file_okay = True , dir_okay = True ),
165
160
help = "VTD project to use, default to currently symlinked." ,
166
161
)
167
- @click .option (
168
- "--copy-project" ,
169
- is_flag = True ,
170
- help = "Copy VTD project in facade installation, instead of linking." ,
171
- )
172
162
@click .option (
173
163
"-n" ,
174
164
"--no-start" ,
@@ -187,9 +177,7 @@ def start(
187
177
opt ,
188
178
skip_setup : bool ,
189
179
vtd_setup : str ,
190
- copy_setup : bool ,
191
180
vtd_project : str ,
192
- copy_project : bool ,
193
181
no_start : bool ,
194
182
vtd_args : str ,
195
183
):
@@ -221,10 +209,7 @@ def start(
221
209
dst = opt .runtime_dir / "Data" / "Setups" / "Current"
222
210
if dst .exists ():
223
211
os .remove (dst )
224
- if copy_setup :
225
- shutil .copytree (vtd_setup , dst , symlinks = True )
226
- else :
227
- os .symlink (vtd_setup , dst )
212
+ shutil .copytree (vtd_setup , dst , symlinks = True )
228
213
229
214
if vtd_project is not None :
230
215
logging .info ("Select project: {}" .format (vtd_project ))
@@ -233,10 +218,7 @@ def start(
233
218
dst = opt .runtime_dir / "Data" / "Projects" / "Current"
234
219
if dst .exists ():
235
220
os .remove (dst )
236
- if copy_project :
237
- shutil .copytree (vtd_project , dst , symlinks = True )
238
- else :
239
- os .symlink (vtd_project , dst )
221
+ os .symlink (vtd_project , dst )
240
222
241
223
if no_start :
242
224
return
0 commit comments