Debug包
#!/bin/sh
out_path=`date "+%Y-%m-%d-%H-%M-%S"`
if [ ! -d "./fir_build_ipa" ]
then
mkdir ./fir_build_ipa
fi
mkdir ./fir_build_ipa/$out_path
fir b ./ -w -S [SchemeName] -p -T [用户在 fir.im 上的 api_token] -C Debug -c 发布Debug版本 PROVISIONING_PROFILE_VALUE="Automatic" DEVELOPMENT_TEAM=[TeamID] -o ./fir_build_ipa/$out_path
Release包
#!/bin/sh
out_path=`date "+%Y-%m-%d-%H-%M-%S"`
if [ ! -d "./fir_build_ipa" ]
then
mkdir ./fir_build_ipa
fi
mkdir ./fir_build_ipa/$out_path
fir b ./ -w -S [SchemeName] -p -T [用户在 fir.im 上的 api_token] -C Release -c 发布Release版本 PROVISIONING_PROFILE_VALUE="Automatic" DEVELOPMENT_TEAM=[TeamID] -o ./fir_build_ipa/$out_path
fir publish里面的 -c, [--changelog=CHANGELOG] # Set changelog 可以自定义发布时的changelog 优化如下:
#!/bin/sh
out_path=`date "+%Y-%m-%d-%H-%M-%S"`
if [ ! -d "./fir_build_ipa" ]
then
mkdir ./fir_build_ipa
fi
mkdir ./fir_build_ipa/$out_path
if [ $# -eq 0 ]
then
fir b ./ -w -S DaBoLuo -p -T [用户在 fir.im 上的 api_token] -C Debug -c 发布Debug版本 PROVISIONING_PROFILE_VALUE="Automatic" DEVELOPMENT_TEAM=[TeamID] -o ./fir_build_ipa/$out_path
else
a=$*
echo $a
fir b ./ -w -S DaBoLuo -p -T [用户在 fir.im 上的 api_token] -C Debug -c $a PROVISIONING_PROFILE_VALUE="Automatic" DEVELOPMENT_TEAM=[TeamID] -o ./fir_build_ipa/$out_path
fi
网友评论