File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ if test -z $PRE_COMPILE_TAG ;then
4747fi
4848
4949# opus-1.3.1-231124151836
50+ # yuv-stable-eb6e7bb-250225223408
5051LIB_NAME=$( echo $PRE_COMPILE_TAG | awk -F - ' {print $1}' )
5152prefix=" ${LIB_NAME} -"
5253suffix=$( echo $PRE_COMPILE_TAG | awk -F - ' {printf "-%s", $NF}' )
Original file line number Diff line number Diff line change @@ -37,7 +37,13 @@ if test -z $PRE_COMPILE_TAG ;then
3737fi
3838
3939# opus-1.3.1-231124151836
40+ # yuv-stable-eb6e7bb-250225223408
4041LIB_NAME=$( echo $PRE_COMPILE_TAG | awk -F - ' {print $1}' )
41- VER=$( echo $PRE_COMPILE_TAG | awk -F - ' {print $2}' )
42+ prefix=" ${LIB_NAME} -"
43+ suffix=$( echo $PRE_COMPILE_TAG | awk -F - ' {printf "-%s", $NF}' )
44+ # 去掉前缀
45+ temp=${PRE_COMPILE_TAG# $prefix }
46+ # 去掉后缀
47+ VER=${temp% $suffix }
4248
4349install_plat
You can’t perform that action at this time.
0 commit comments