Skip to content

Commit af892b0

Browse files
Explicitly create tmp dir before starting tools (macOS 15.7) (#67)
1 parent e8df6c3 commit af892b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/SetupDevEnv/SetupDevEnv.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ struct SetupDevEnv {
5757
}
5858

5959
do {
60-
let commandToRun = "curl -sL https://firebase.tools/dataconnect | bash"
60+
let commandToRun = "curl -sL https://firebase.tools/dataconnect | TMPDIR=$(mktemp -d) bash"
6161
try executor.run(commandToRun)
6262
} catch {
6363
print("❌ Error running command: \(error)")

0 commit comments

Comments
 (0)