Skip to content

Commit d9383a2

Browse files
committed
Fix various problems with HowToBuild. Sparkle was not buildable because some recent version of xcode dropped support for ancient deployment targets. Various xcodebuild commands assumed that the configuration build dir was the weird ./Build folder, so change those to specify it. Use homebrew cmake rather than /usr/local/bin (which worked because I had an x86_64 binary there). Issue 12239
1 parent c19c70a commit d9383a2

File tree

83 files changed

+169
-181
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+169
-181
lines changed
Binary file not shown.

BetterFontPicker/BetterFontPicker.framework/Versions/A/_CodeSignature/CodeResources

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@
5353
<dict>
5454
<key>hash2</key>
5555
<data>
56-
35FM/GZqnNELWXWHALiuk9MTwscekylXTma/QYzKwOM=
56+
dx5u4aotuI1L1IktR/JtvitAqgdCIFX9G01SLE58tpE=
5757
</data>
5858
</dict>
5959
<key>Modules/BetterFontPicker.swiftmodule/Project/x86_64-apple-macos.swiftsourceinfo</key>
6060
<dict>
6161
<key>hash2</key>
6262
<data>
63-
3KLOxoLgLDU8VXuYKsARhX/RiBQT2I096yoK7HBirek=
63+
KiSurkGcFXwiDHZ/J31khGSXMFoSYaZTsVk22aiwjig=
6464
</data>
6565
</dict>
6666
<key>Modules/BetterFontPicker.swiftmodule/arm64-apple-macos.abi.json</key>
@@ -95,7 +95,7 @@
9595
<dict>
9696
<key>hash2</key>
9797
<data>
98-
Ztcc1MKA84XVRjvE2xHfNb0UCH3TR6OyKFE7xvTZ8w4=
98+
LzwVO8kj0ww0PFKs33pVkGW1Q6jDETtKZ1UpWxiPosM=
9999
</data>
100100
</dict>
101101
<key>Modules/BetterFontPicker.swiftmodule/x86_64-apple-macos.abi.json</key>
@@ -130,7 +130,7 @@
130130
<dict>
131131
<key>hash2</key>
132132
<data>
133-
r4Ki29VpxS9E6S2JtdL9wQ3qThirmd2e3ilS27tiO5Y=
133+
/BNDcDmSmHAybphhttEXbBoJ4xVGtM6ewlSfnNRgp8w=
134134
</data>
135135
</dict>
136136
<key>Modules/module.modulemap</key>

BetterFontPicker/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
all:
2-
xcodebuild -parallelizeTargets -target BetterFontPicker -configuration Release
2+
xcodebuild -parallelizeTargets -target BetterFontPicker -configuration Release 'CONFIGURATION_BUILD_DIR=$$(SRCROOT)/Build/$$(CONFIGURATION)'
33
rm -rf BetterFontPicker.framework
44
mv build/Release/BetterFontPicker.framework .
55
dev:
6-
xcodebuild -parallelizeTargets -target BetterFontPicker -configuration Debug
6+
xcodebuild -parallelizeTargets -target BetterFontPicker -configuration Debug 'CONFIGURATION_BUILD_DIR=$$(SRCROOT)/Build/$$(CONFIGURATION)'
77
rm -rf BetterFontPicker.framework
88
mv build/Debug/BetterFontPicker.framework .
Binary file not shown.

ColorPicker/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
all:
2-
xcodebuild -parallelizeTargets -target ColorPicker -configuration Release
2+
xcodebuild -parallelizeTargets -target ColorPicker -configuration Release 'CONFIGURATION_BUILD_DIR=$$(SRCROOT)/Build/$$(CONFIGURATION)'
33
rm -rf ColorPicker.framework
44
mv build/Release/ColorPicker.framework .

Makefile

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ITERM_CONF_PLIST = $(HOME)/Library/Preferences/com.googlecode.iterm2.plist
88
COMPACTDATE=$(shell date +"%Y%m%d")
99
VERSION = $(shell cat version.txt | sed -e "s/%(extra)s/$(COMPACTDATE)/")
1010
NAME=$(shell echo $(VERSION) | sed -e "s/\\./_/g")
11-
CMAKE=/usr/local/bin/cmake
11+
CMAKE ?= /opt/homebrew/bin/cmake
1212

1313
.PHONY: clean all backup-old-iterm restart
1414

@@ -143,14 +143,14 @@ x86libssh2: force
143143
mkdir -p submodules/libssh2/build_x86_64
144144
# Add this flag to enable tracing:
145145
# -DCMAKE_C_FLAGS="-DLIBSSH2DEBUG"
146-
cd submodules/libssh2/build_x86_64 && $(CMAKE) -DOPENSSL_INCLUDE_DIR=${PWD}/submodules/openssl/build-fat/include -DOPENSSL_ROOT_DIR=${PWD}/submodules/openssl/build-fat -DBUILD_EXAMPLES=NO -DBUILD_TESTING=NO -DCMAKE_OSX_ARCHITECTURES=x86_64 -DCRYPTO_BACKEND=OpenSSL -DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 -DCMAKE_EXE_LINKER_FLAGS="-ld_classic" -DCMAKE_MODULE_LINKER_FLAGS="-ld_classic" .. && $(MAKE) libssh2_static
146+
cd submodules/libssh2/build_x86_64 && $(CMAKE) -DCMAKE_IGNORE_PREFIX_PATH=/opt/homebrew -DOPENSSL_INCLUDE_DIR=${PWD}/submodules/openssl/build-fat/include -DOPENSSL_ROOT_DIR=${PWD}/submodules/openssl/build-fat -DBUILD_EXAMPLES=NO -DBUILD_TESTING=NO -DCMAKE_OSX_ARCHITECTURES=x86_64 -DCRYPTO_BACKEND=OpenSSL -DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 -DCMAKE_EXE_LINKER_FLAGS="-ld_classic" -DCMAKE_MODULE_LINKER_FLAGS="-ld_classic" .. && $(MAKE) libssh2_static
147147

148148
armlibssh2: force
149149
echo Begin building armlibssh2
150150
mkdir -p submodules/libssh2/build_arm64
151151
# Add this flag to enable tracing:
152152
# -DCMAKE_C_FLAGS="-DLIBSSH2DEBUG"
153-
cd submodules/libssh2/build_arm64 && $(CMAKE) -DOPENSSL_INCLUDE_DIR=${PWD}/submodules/openssl/include -DOPENSSL_ROOT_DIR=${PWD}/submodules/openssl -DBUILD_EXAMPLES=NO -DBUILD_TESTING=NO -DCMAKE_OSX_ARCHITECTURES=arm64 -DCRYPTO_BACKEND=OpenSSL -DCMAKE_EXE_LINKER_FLAGS="-ld_classic" -DCMAKE_MODULE_LINKER_FLAGS="-ld_classic" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 .. && $(MAKE) libssh2_static
153+
cd submodules/libssh2/build_arm64 && $(CMAKE) -DCMAKE_IGNORE_PREFIX_PATH=/opt/homebrew -DOPENSSL_INCLUDE_DIR=${PWD}/submodules/openssl/include -DOPENSSL_ROOT_DIR=${PWD}/submodules/openssl -DBUILD_EXAMPLES=NO -DBUILD_TESTING=NO -DCMAKE_OSX_ARCHITECTURES=arm64 -DCRYPTO_BACKEND=OpenSSL -DCMAKE_EXE_LINKER_FLAGS="-ld_classic" -DCMAKE_MODULE_LINKER_FLAGS="-ld_classic" -DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 .. && $(MAKE) libssh2_static
154154

155155
fatlibssh2: force fatopenssl
156156
echo Begin building fatlibssh2
@@ -175,12 +175,12 @@ paranoidNMSSH: force
175175

176176
libgit2: force
177177
mkdir -p submodules/libgit2/build
178-
PATH=/usr/local/bin:${PATH} cd submodules/libgit2/build && ${CMAKE} -DBUILD_SHARED_LIBS=OFF -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET="10.14" -DCMAKE_INSTALL_PREFIX=../../../ThirdParty/libgit2 -DUSE_SSH=OFF -DUSE_ICONV=OFF ..
178+
PATH=/usr/local/bin:${PATH} cd submodules/libgit2/build && ${CMAKE} -DBUILD_CLAR=OFF -DCMAKE_IGNORE_PREFIX_PATH=/opt/homebrew -DBUILD_SHARED_LIBS=OFF -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_OSX_DEPLOYMENT_TARGET="10.14" -DCMAKE_INSTALL_PREFIX=../../../ThirdParty/libgit2 -DUSE_SSH=OFF -DUSE_ICONV=OFF ..
179179
PATH=/usr/local/bin:${PATH} cd submodules/libgit2/build && ${CMAKE} --build . --target install --parallel "$$(sysctl -n hw.ncpu)"
180180

181181
sparkle: force
182182
rm -rf ThirdParty/Sparkle.framework
183-
cd submodules/Sparkle && xcodebuild -scheme Sparkle -configuration Release
183+
cd submodules/Sparkle && xcodebuild -scheme Sparkle -configuration Release 'CONFIGURATION_BUILD_DIR=$$(SRCROOT)/Build/$$(CONFIGURATION)'
184184
mv submodules/Sparkle/Build/Release/Sparkle.framework ThirdParty/Sparkle.framework
185185

186186
paranoid-swiftymarkdown: force
@@ -198,6 +198,12 @@ paranoidbetterfontpicker: force
198198
paranoidbetterfontpicker-dev: force
199199
/usr/bin/sandbox-exec -f deps.sb $(MAKE) BetterFontPicker-Dev
200200

201+
paranoidlibgit2: force
202+
/usr/bin/sandbox-exec -f deps.sb $(MAKE) libgit2
203+
204+
paranoidsparkle: force
205+
/usr/bin/sandbox-exec -f deps.sb $(MAKE) sparkle
206+
201207
# You probably want make paranoiddeps to avoid depending on Hombrew stuff.
202208
deps: force fatlibsixel CoreParse NMSSH bindeps libgit2 sparkle
203209

@@ -218,12 +224,12 @@ bindeps: SwiftyMarkdown Highlightr BetterFontPicker
218224
cd SearchableComboListView && $(MAKE)
219225

220226
SwiftyMarkdown: force
221-
cd submodules/SwiftyMarkdown && xcodebuild -configuration Release
227+
cd submodules/SwiftyMarkdown && xcodebuild -configuration Release 'CONFIGURATION_BUILD_DIR=$$(SRCROOT)/Build/$$(CONFIGURATION)'
222228
rm -rf ThirdParty/SwiftyMarkdown.framework
223229
mv submodules/SwiftyMarkdown/build/Release/SwiftyMarkdown.framework ThirdParty/SwiftyMarkdown.framework
224230

225231
Highlightr: force
226-
cd submodules/Highlightr && xcodebuild -project Highlightr.xcodeproj -target Highlightr-macOS
232+
cd submodules/Highlightr && xcodebuild -project Highlightr.xcodeproj -target Highlightr-macOS 'CONFIGURATION_BUILD_DIR=$$(SRCROOT)/Build/$$(CONFIGURATION)'
227233
rm -rf ThirdParty/Highlightr.framework
228234
mv submodules/Highlightr/build/Release/Highlightr.framework ThirdParty/Highlightr.framework
229235

SearchableComboListView/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
all: force
22
rm -rf SearchableComboListView.framework
3-
xcodebuild -target SearchableComboListView -configuration Release
3+
xcodebuild -target SearchableComboListView -configuration Release 'CONFIGURATION_BUILD_DIR=$$(SRCROOT)/Build/$$(CONFIGURATION)'
44
mv build/Release/SearchableComboListView.framework .
55

66
force:

SearchableComboListView/SearchableComboListView.framework/Versions/A/Modules/SearchableComboListView.swiftmodule/arm64-apple-macos.abi.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,175 +1771,175 @@
17711771
},
17721772
"ConstValues": [
17731773
{
1774-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1774+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
17751775
"kind": "IntegerLiteral",
17761776
"offset": 2729,
17771777
"length": 1,
17781778
"value": "0"
17791779
},
17801780
{
1781-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1781+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
17821782
"kind": "IntegerLiteral",
17831783
"offset": 2800,
17841784
"length": 1,
17851785
"value": "0"
17861786
},
17871787
{
1788-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1788+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
17891789
"kind": "BooleanLiteral",
17901790
"offset": 2820,
17911791
"length": 4,
17921792
"value": "true"
17931793
},
17941794
{
1795-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1795+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
17961796
"kind": "IntegerLiteral",
17971797
"offset": 2852,
17981798
"length": 1,
17991799
"value": "0"
18001800
},
18011801
{
1802-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1802+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18031803
"kind": "FloatLiteral",
18041804
"offset": 2944,
18051805
"length": 3,
18061806
"value": "0.0"
18071807
},
18081808
{
1809-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1809+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18101810
"kind": "IntegerLiteral",
18111811
"offset": 3452,
18121812
"length": 1,
18131813
"value": "0"
18141814
},
18151815
{
1816-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1816+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18171817
"kind": "IntegerLiteral",
18181818
"offset": 3457,
18191819
"length": 2,
18201820
"value": "16"
18211821
},
18221822
{
1823-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1823+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18241824
"kind": "Array",
18251825
"offset": 6546,
18261826
"length": 2,
18271827
"value": "[]"
18281828
},
18291829
{
1830-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1830+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18311831
"kind": "Array",
18321832
"offset": 6655,
18331833
"length": 2,
18341834
"value": "[]"
18351835
},
18361836
{
1837-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1837+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18381838
"kind": "StringLiteral",
18391839
"offset": 6732,
18401840
"length": 30,
18411841
"value": "\"searchableComboViewCheckmark\""
18421842
},
18431843
{
1844-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1844+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18451845
"kind": "StringLiteral",
18461846
"offset": 6834,
18471847
"length": 26,
18481848
"value": "\"searchableComboViewLabel\""
18491849
},
18501850
{
1851-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1851+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18521852
"kind": "BooleanLiteral",
18531853
"offset": 6938,
18541854
"length": 4,
18551855
"value": "true"
18561856
},
18571857
{
1858-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1858+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18591859
"kind": "StringLiteral",
18601860
"offset": 6984,
18611861
"length": 2,
18621862
"value": "\"\""
18631863
},
18641864
{
1865-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1865+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18661866
"kind": "IntegerLiteral",
18671867
"offset": 7215,
18681868
"length": 1,
18691869
"value": "4"
18701870
},
18711871
{
1872-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
1872+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableViewController.swift",
18731873
"kind": "IntegerLiteral",
18741874
"offset": 7910,
18751875
"length": 1,
18761876
"value": "0"
18771877
},
18781878
{
1879-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboView.swift",
1879+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboView.swift",
18801880
"kind": "BooleanLiteral",
18811881
"offset": 1686,
18821882
"length": 4,
18831883
"value": "true"
18841884
},
18851885
{
1886-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboView.swift",
1886+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboView.swift",
18871887
"kind": "IntegerLiteral",
18881888
"offset": 2334,
18891889
"length": 2,
18901890
"value": "99"
18911891
},
18921892
{
1893-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboView.swift",
1893+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboView.swift",
18941894
"kind": "BooleanLiteral",
18951895
"offset": 2402,
18961896
"length": 5,
18971897
"value": "false"
18981898
},
18991899
{
1900-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
1900+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
19011901
"kind": "StringLiteral",
19021902
"offset": 792,
19031903
"length": 32,
19041904
"value": "\"SearchableComboTableView.Enter\""
19051905
},
19061906
{
1907-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
1907+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
19081908
"kind": "BooleanLiteral",
19091909
"offset": 865,
19101910
"length": 5,
19111911
"value": "false"
19121912
},
19131913
{
1914-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
1914+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
19151915
"kind": "BooleanLiteral",
19161916
"offset": 974,
19171917
"length": 5,
19181918
"value": "false"
19191919
},
19201920
{
1921-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
1921+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
19221922
"kind": "BooleanLiteral",
19231923
"offset": 1021,
19241924
"length": 5,
19251925
"value": "false"
19261926
},
19271927
{
1928-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
1928+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboTableView.swift",
19291929
"kind": "BooleanLiteral",
19301930
"offset": 3046,
19311931
"length": 4,
19321932
"value": "true"
19331933
},
19341934
{
1935-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboListViewController.swift",
1935+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboListViewController.swift",
19361936
"kind": "BooleanLiteral",
19371937
"offset": 1027,
19381938
"length": 4,
19391939
"value": "true"
19401940
},
19411941
{
1942-
"filePath": "\/Users\/gnachman\/git\/iterm2-alt3\/SearchableComboListView\/SearchableComboView\/SearchableComboListViewController.swift",
1942+
"filePath": "\/Users\/gnachman\/git\/iterm2-alt2\/SearchableComboListView\/SearchableComboView\/SearchableComboListViewController.swift",
19431943
"kind": "IntegerLiteral",
19441944
"offset": 1413,
19451945
"length": 2,

0 commit comments

Comments
 (0)