From 2c9d8e681c7d1af8f848fb5e22bc630a4333009c Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Wed, 10 Jan 2024 12:33:10 -0500 Subject: [PATCH] fix(xcbeautify) closes #4787 closes #4771 closes #4770 --- projects/tuist.io/xcbeautify/package.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/projects/tuist.io/xcbeautify/package.yml b/projects/tuist.io/xcbeautify/package.yml index 2f74940e..0bcfdbee 100644 --- a/projects/tuist.io/xcbeautify/package.yml +++ b/projects/tuist.io/xcbeautify/package.yml @@ -16,6 +16,11 @@ build: # swift.org: 5 # apple.com/xcode: >=13.3 script: + # swift freaks all the way out if there's UTF-8 in the `TMPDIR` + # swift build --configuration=release + # TSCUtility/Triple.swift:215: Fatal error: Failed to parse target info (malformed). + - export TMPDIR=$(mktemp -d) + # 0.21.0 doesn't have its version bumped - run: echo 'let version = "{{version}}"' > Sources/xcbeautify/Version.swift if: '>=0.21.0'