Skip to content

Commit

Permalink
Merge pull request #21 from orkonano/develop
Browse files Browse the repository at this point in the history
fix bug in travis publish
  • Loading branch information
orkonano committed Mar 18, 2016
2 parents e37add0 + 6b3561f commit 9fda86a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions travis-publish.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/bash

vesion="$(grep 'mailgunPluginVersion =' build.gradle)"
vesion="${vesion#*=}"
vesion="${vesion//[[:blank:]\'\"]/}"
version="$(grep 'mailgunPluginVersion =' build.gradle)"
version="${version#*=}"
version="${version//[[:blank:]\'\"]/}"

tagVersion="v$version"

echo "Publishing $vesion version"
echo "Publishing $version version"

EXIT_STATUS=0

Expand Down

0 comments on commit 9fda86a

Please sign in to comment.