File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -169,10 +169,7 @@ jobs:
169169
170170 - name : Install iOS target for Rust
171171 if : env.turbo_cache_hit != 1
172- run : rustup target add \
173- aarch64-apple-ios \
174- aarch64-apple-ios-sim
175-
172+ run : rustup target add aarch64-apple-ios aarch64-apple-ios-sim
176173
177174 - name : Build for iOS
178175 run : |
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ # Detect the operating system to use appropriate sed syntax
4+ if [[ " $OSTYPE " == " darwin" * ]]; then
5+ # macOS
6+ SED_INPLACE=" sed -i ''"
7+ else
8+ # Linux (including CI environments)
9+ SED_INPLACE=" sed -i"
10+ fi
11+
312# Replace line 29 in src/index.tsx with export statement
4- sed -i ' ' ' 29c\
13+ $SED_INPLACE ' 29c\
514export * from ' \' ' ./extension' \' ' ;
615' src/index.tsx
You can’t perform that action at this time.
0 commit comments