We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a11ff70 commit 55f2c7bCopy full SHA for 55f2c7b
do-install/main.sh
@@ -27,12 +27,12 @@ function parse_lib_config() {
27
local t=$(echo "PRE_COMPILE_TAG_$MR_PLAT" | tr '[:lower:]' '[:upper:]')
28
local vt=$(eval echo "\$$t")
29
30
- if test -z $TAG ;then
31
- echo "tag can't be nil"
32
- usage
+ if test -z $vt ;then
+ echo "$t can't be nil"
33
exit
34
fi
35
-
+
+ export TAG=$vt
36
# opus-1.3.1-231124151836
37
# yuv-stable-eb6e7bb-250225223408
38
LIB_NAME=$(echo $TAG | awk -F - '{print $1}')
@@ -44,7 +44,6 @@ function parse_lib_config() {
44
VER=${temp%$suffix}
45
46
export VER
47
- export TAG
48
export LIB_NAME
49
}
50
0 commit comments