fix(test): update output location

This commit is contained in:
orhun
2021-06-18 02:09:00 +03:00
parent 5c15ae40a0
commit f6396b2020
2 changed files with 1 additions and 5 deletions

View File

@@ -1,10 +1,7 @@
#!/bin/bash -l
set -uxo pipefail
CHANGELOG_OUT=${CHANGELOG_OUT:="git-cliff/CHANGELOG.md"}
# Create the output directory
mkdir -p "$(dirname $CHANGELOG_OUT)"
CHANGELOG_OUT=${CHANGELOG_OUT:="CHANGELOG.md"}
# Execute git-cliff
git-cliff "$@" > "$CHANGELOG_OUT"