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 6cd7f74 commit e6c4d59Copy full SHA for e6c4d59
package-openocd.bash
@@ -30,8 +30,8 @@ OUTPUT_TAG=`$CROSS_COMPILER -v 2>&1 | awk '/Target/ { print $2 }'`
30
31
cd distrib
32
if [[ $CROSS_COMPILE == *mingw* ]] ; then
33
-zip -r ../openocd-${OUTPUT_VERSION}-${OUTPUT_TAG}.zip *
+zip -r ../openocd-${OUTPUT_VERSION}-${OUTPUT_TAG}.zip ${OUTPUT_TAG}
34
else
35
-tar -cjvf ../openocd-${OUTPUT_VERSION}-${OUTPUT_TAG}.tar.bz2 *
+tar -cjvf ../openocd-${OUTPUT_VERSION}-${OUTPUT_TAG}.tar.bz2 ${OUTPUT_TAG}
36
fi
37
cd -
0 commit comments