From ce638c6cc57917ac6efffdf34157b4a9ae6ef613 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Fri, 22 Nov 2024 14:39:14 -0500 Subject: [PATCH] remove CLI interaction, simply overwrite git url --- src/haxelib/api/Installer.hx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/haxelib/api/Installer.hx b/src/haxelib/api/Installer.hx index 36d0a9a4..577f127b 100644 --- a/src/haxelib/api/Installer.hx +++ b/src/haxelib/api/Installer.hx @@ -799,10 +799,6 @@ class Installer { if (url != null && libUrl != null && url != libUrl) { - if (!userInterface.confirm('Update remote url: "${libUrl}" with "${url}"')) { - userInterface.log('Library $library $id repository url remains at "${libUrl}"'); - return; - } FsUtils.deleteRec(libPath); doVcsClone(); }