diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-08 12:09:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-08 12:09:12 +0200 |
| commit | 16c784fe9865bae3a09f009d02195c44313c5b8a (patch) | |
| tree | 8e7310ada7b1f80fb8f70af742775a7da4f75893 | |
| parent | 4d2455edac06dc4cb0ed98c074a97dd67b4f3275 (diff) | |
Unlock the keychain later so it has less chance of timing out.
AFAICS there is a timeout... we could probably extend it, but this seems
to help.
| -rwxr-xr-x | cdist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -765,8 +765,8 @@ class OSXTarget(Target): self.command('security unlock-keychain -p %s %s' % (self.osx_keychain_password, self.osx_keychain_file)) def package(self, project, checkout, output_dir, options, notarize): - self.unlock_keychain() tree = globals.trees.get(project, checkout, self) + self.unlock_keychain() with TreeDirectory(tree): p = self._cscript_package_and_notarize(tree, options, self.can_notarize and notarize) self._copy_packages(tree, p, output_dir) |
