FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ios/prepare_dSYMs.sh at main · NativeScript/ios · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NativeScript
/
ios
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
42
Star
150
Code
Issues
52
Pull requests
20
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ios
/
prepare_dSYMs.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
16 lines (12 loc) · 408 Bytes
Breadcrumbs
ios
/
prepare_dSYMs.sh
Copy path
File metadata and controls
executable file
·
16 lines (12 loc) · 408 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!
/bin/bash
set
-e
OUTFOLDER=
"
./dist/dSYMs
"
mkdir -p
"
$OUTFOLDER
"
for
framework_path
in
./dist/NativeScript.xcframework/ios
*
;
do
DSYMPATH=
"
$framework_path
/dSYMs/NativeScript.framework.dSYM
"
if
[
-d
"
$DSYMPATH
"
]
;
then
OUTPATH=
"
$OUTFOLDER
/
$(
basename
$framework_path
)
NativeScript.framework.dSYM
"
echo
"
Copying
$DSYMPATH
to
$OUTPATH
"
cp -r
"
$DSYMPATH
"
"
$OUTPATH
"
fi
done
Back
|
FazBrowse Home
|
New Git URL