We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b2584 commit 73e10fcCopy full SHA for 73e10fc
newVersion
@@ -28,9 +28,10 @@ echo Updating to version: `cat VERSION`
28
rm -f version.h
29
vMaj=`cut -d. -f1 VERSION`
30
vMin=`cut -d. -f2 VERSION`
31
+vMinFix=$(cut -d. -f3 VERSION)
32
echo "#define VERSION \"`cat VERSION`\"" > version.h
33
echo "#define VERSION_MAJOR $vMaj" >> version.h
-echo "#define VERSION_MINOR \"$vMin\"" >> version.h
34
+echo "#define VERSION_MINOR \"$vMin.$vMinFix\"" >> version.h
35
36
rm -f debian-template/wiringPi/DEBIAN/control
37
cat > debian-template/wiringPi/DEBIAN/control <<EOF
0 commit comments