2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 19
19
<key >CFBundleShortVersionString </key >
20
20
<string >$(MARKETING_VERSION) </string >
21
21
<key >CFBundleVersion </key >
22
- <string >11295 </string >
22
+ <string >11297 </string >
23
23
<key >LSApplicationCategoryType </key >
24
24
<string >public.app-category.developer-tools </string >
25
25
<key >LSMinimumSystemVersion </key >
Original file line number Diff line number Diff line change @@ -101,8 +101,11 @@ class NextCompiler {
101
101
let dylibName = DYLIB_PREFIX + sourceName +
102
102
" _ \( connected? . injectionNumber ?? compileNumber) .dylib "
103
103
let useFilesystem = connected? . isLocalClient != false
104
+ #if INJECTION_III_APP
104
105
let dylibPath = ( true ? tmpPath : " /tmp " ) + dylibName
105
-
106
+ #else
107
+ let dylibPath = ( useFilesystem ? tmpPath : " /tmp " ) + dylibName
108
+ #endif
106
109
guard let object = recompile ( source: source, platform: platform) ,
107
110
tmpPath != compilerTmp || mkdir ( compilerTmp, 0o777 ) != - 999 ,
108
111
let dylib = link ( object: object, dylib: dylibPath, platform:
0 commit comments