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 3bced12 commit 55acd35Copy full SHA for 55acd35
samples/runSample.sh
@@ -10,17 +10,13 @@ function latestSemVer {
10
# Assume repo tags have been created in a sensible order. Find the mq-golang
11
# version in the root go.mod file and the current Git tag for this repo.
12
# Then pick the latest version to create the Docker tag
13
-<<<<<<< HEAD
14
for m in ../go.mod ../../go.mod
15
do
16
if [ -r $m ]
17
then
18
VERDEP=`cat $m | awk '/mq-golang/ {print $2}' `
19
fi
20
done
21
-=======
22
-VERDEP=`cat ../go.mod | awk '/mq-golang/ {print $2}' `
23
->>>>>>> master
24
VERREPO=`git tag -l 2>/dev/null| sort | tail -1 `
25
26
VER=`latestSemVer $VERDEP $VERREPO`
0 commit comments