Skip to content

Commit 40f67f0

Browse files
committedMar 25, 2025
TmpDirs.
1 parent 540c4e4 commit 40f67f0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎App/InjectionNext/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleShortVersionString</key>
2020
<string>$(MARKETING_VERSION)</string>
2121
<key>CFBundleVersion</key>
22-
<string>11295</string>
22+
<string>11297</string>
2323
<key>LSApplicationCategoryType</key>
2424
<string>public.app-category.developer-tools</string>
2525
<key>LSMinimumSystemVersion</key>

‎App/InjectionNext/NextCompiler.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,11 @@ class NextCompiler {
101101
let dylibName = DYLIB_PREFIX + sourceName +
102102
"_\(connected?.injectionNumber ?? compileNumber).dylib"
103103
let useFilesystem = connected?.isLocalClient != false
104+
#if INJECTION_III_APP
104105
let dylibPath = (true ? tmpPath : "/tmp") + dylibName
105-
106+
#else
107+
let dylibPath = (useFilesystem ? tmpPath : "/tmp") + dylibName
108+
#endif
106109
guard let object = recompile(source: source, platform: platform),
107110
tmpPath != compilerTmp || mkdir(compilerTmp, 0o777) != -999,
108111
let dylib = link(object: object, dylib: dylibPath, platform:

0 commit comments

Comments
 (0)
Failed to load comments.