From 11b8eb691f9091e57e7b5c387e041d60c8c8005b Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Thu, 15 Aug 2019 13:51:37 -0700 Subject: [PATCH] Fixed syntax issue with changelog script --- scripts/changelog.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/changelog.sh b/scripts/changelog.sh index 82ea36d..817dc31 100644 --- a/scripts/changelog.sh +++ b/scripts/changelog.sh @@ -10,9 +10,9 @@ # ./changelog.sh rev.2.0.1 rev.2.1.1 # ./changelog.sh b1d5817 02cd438 githun-username github project -first-tag="${1}" -last-tag="${2}" -git-user="${3:-pyr0ball}" -git-project="${4:-pyr0piezo}" +first_tag="${1}" +last_tag="${2}" +git_user="${3:-pyr0ball}" +git_project="${4:-pyr0piezo}" -git log ${first-tag}...${last-tag} --pretty=format:"%s [view commit](http://github.com/${git-user}/${git-project}/commit/%H) " --reverse | grep "#changelog" +git log ${first_tag}...${last_tag} --pretty=format:"%s [view commit](http://github.com/${git_user}/${git_project}/commit/%H) " --reverse | grep "#changelog"