We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4b7faa commit c811fc7Copy full SHA for c811fc7
2 files changed
.github/workflows/onestep.sh
@@ -139,7 +139,8 @@ function replace_tag()
139
sed -i "" "s/^export $key=.*/export $key=$TAG/" $file
140
else
141
# PRE_COMPILE_TAG_IOS not found, append PRE_COMPILE_TAG_IOS
142
- echo "export $key=$TAG" >> $file
+ [ -n "$(tail -c1 "$file")" ] && echo "" >> "$file"
143
+ echo "export $key=$TAG" >> "$file"
144
fi
145
}
146
configs/libs/dovi.sh
@@ -28,4 +28,6 @@ if [[ "$GIT_DOVI_UPSTREAM" != "" ]] ;then
28
export GIT_UPSTREAM="$GIT_DOVI_UPSTREAM"
29
30
export GIT_UPSTREAM=https://github.com/quietvoid/dovi_tool.git
31
-fiexport PRE_COMPILE_TAG_MACOS=dovi-3.3.2-260326175522
+fi
32
+
33
+export PRE_COMPILE_TAG_MACOS=dovi-3.3.2-260326175522
0 commit comments