Ai
2 Star 0 Fork 0

mirrors_mapbox/mapbox-maps-swiftui-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
insert_access_token.sh 637 Bytes
一键复制 编辑 原始数据 按行查看 历史
Fabian Guerra 提交于 2019-09-13 07:32 +08:00 . MGLMapView integration with SwiftUI
if [[ "$CI" ]]; then
echo "CI environment, access token not required"
exit 0
else
echo "Inserting Mapbox access token..."
token_file=~/.mapbox
token_file2=~/mapbox
token="$(cat $token_file 2>/dev/null || cat $token_file2 2>/dev/null)"
if [ "$token" ]; then
plutil -replace MGLMapboxAccessToken -string $token "$TARGET_BUILD_DIR/$INFOPLIST_PATH"
echo "Token insertion successful"
else
echo \'error: Missing Mapbox access token\'
echo "error: Get an access token from <https://www.mapbox.com/studio/account/tokens/>, then create a new file at $token_file that contains the access token."
exit 1
fi
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_mapbox/mapbox-maps-swiftui-demo.git
git@gitee.com:mirrors_mapbox/mapbox-maps-swiftui-demo.git
mirrors_mapbox
mapbox-maps-swiftui-demo
mapbox-maps-swiftui-demo
master

搜索帮助