Skip to content

Commit 470fd2c

Browse files
committed
ios: Fix clone url
1 parent b824eaa commit 470fd2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/Runner/AppDelegate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ - (void)handleMethodCallAsync:(FlutterMethodCall *)call result:(FlutterResult)re
330330

331331
gj_set_ssh_keys_paths((char*) sshPublicKeyPath, (char*) sshPrivateKeyPath, "");
332332

333-
int err = gj_git_clone([folderPath UTF8String], [folderPath UTF8String]);
333+
int err = gj_git_clone([cloneUrl UTF8String], [folderPath UTF8String]);
334334
if (!handleError(result, err)) {
335335
result(@YES);
336336
return;

0 commit comments

Comments
 (0)