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 323ab58 commit ecefbacCopy full SHA for ecefbac
bin/release
@@ -34,7 +34,8 @@ do
34
35
echo "Last release $LAST_RELEASE";
36
37
- CHANGES_SINCE_LAST_RELEASE=$(git log $LAST_RELEASE...master | xargs echo -n)
+ CHANGES_SINCE_LAST_RELEASE=$(git log "$LAST_RELEASE"...master)
38
+ CHANGES_SINCE_LAST_RELEASE="$CHANGES_SINCE_LAST_RELEASE" | xargs echo -n
39
if [[ ! -z "$CHANGES_SINCE_LAST_RELEASE" ]]; then
40
echo "There are changes since last release. Releasing $1";
41
0 commit comments