We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 397f1bf commit 034d61cCopy full SHA for 034d61c
1 file changed
resources/build.sh
@@ -335,7 +335,10 @@ find ${FINAL} -name '*.a' -print0 | xargs -0 -n 8 -P `nproc` ${TARGET}-strip -
335
rm ${FINAL}/mingw
336
mkdir -p ${ZIP}/${FINAL_NAME}
337
rsync -av ${FINAL}/* ${ZIP}/${FINAL_NAME}
338
-zip -r -9 ${OUTPUT}/mingw-latest.zip ${ZIP}
+p=$(pwd)
339
+cd ${ZIP}
340
+zip -r -9 ${OUTPUT}/mingw-latest.zip ${FINAL_NAME}
341
+cd ${p}
342
343
if [[ -v GITHUB_WORKFLOW ]]; then
344
echo "::set-output name=GCC_VERSION::${GCC_VERSION}"
0 commit comments