From 40b76e8e84349154d4222d92c14b6e170755f27e Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Tue, 16 May 2023 16:01:52 +0200 Subject: [PATCH] fix code --- builders/macos-python-builder.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/macos-python-builder.psm1 b/builders/macos-python-builder.psm1 index 580064b7..54a2bdd4 100644 --- a/builders/macos-python-builder.psm1 +++ b/builders/macos-python-builder.psm1 @@ -151,7 +151,7 @@ class macOSPythonBuilder : NixPythonBuilder { $variablesToReplace = @{ "{{__VERSION_FULL__}}" = $this.Version; "{{__PKG_NAME__}}" = $this.GetPkgName(); - "{__ARCHITECTURE__}" = $this.Architecture; + "{{__ARCHITECTURE__}}" = $this.Architecture; } $variablesToReplace.keys | ForEach-Object { $installationTemplateContent = $installationTemplateContent.Replace($_, $variablesToReplace[$_]) }