Skip to content

Commit 74ce796

Browse files
committed
chore: enable ccache in Podfiles
1 parent 290a4b2 commit 74ce796

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/RNApp/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ target 'RNApp' do
3232
installer,
3333
config[:reactNativePath],
3434
:mac_catalyst_enabled => false,
35-
# :ccache_enabled => true
35+
:ccache_enabled => ENV['USE_CCACHE'] == '1'
3636
)
3737
end
3838
end

apps/TesterIntegrated/swift/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ target 'SwiftExample' do
2727
installer,
2828
config[:reactNativePath],
2929
:mac_catalyst_enabled => false,
30-
# :ccache_enabled => true
30+
:ccache_enabled => ENV['USE_CCACHE'] == '1'
3131
)
3232
end
3333
end

0 commit comments

Comments
 (0)