From 877d05228ee29fae7d507335add1355d6ac039ad Mon Sep 17 00:00:00 2001 From: Toki Date: Mon, 23 Sep 2024 21:35:50 +0900 Subject: [PATCH] error fixed --- lib/oto/commands/build/build_ios.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oto/commands/build/build_ios.dart b/lib/oto/commands/build/build_ios.dart index 8fd0972..0509380 100644 --- a/lib/oto/commands/build/build_ios.dart +++ b/lib/oto/commands/build/build_ios.dart @@ -57,7 +57,7 @@ class BuildiOS extends Command { var shell = StringBuffer(); if (data.macPassword != null) { - shell.write(' && security unlock-keychain -p${data.macPassword}'); + shell.write('security unlock-keychain -p${data.macPassword}'); } shell.write(' && cd $xcodeProjectParentPath'); shell.write(' && export LANG=en_US.UTF-8');