Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Jun 16, 2021
2 parents 227c61e + 076a000 commit d0d0d68
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,16 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install ronn
run: |
sudo apt update
sudo apt install -y ronn
- name: Configure
run: |
echo "VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
echo "${GITHUB_REF#refs/*/v}" > .tarball-version
./bootstrap.sh
./configure --disable-dependency-checks
./configure
- name: Build source package
run: |
make dist
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AM_SILENT_RULES([yes])
AC_CONFIG_MACRO_DIR([build-aux])

AC_DEFUN([AX_PROGVAR], [
test -n "$m4_toupper($1)" || AC_PATH_PROG(m4_toupper($1), m4_default($2,$1))
test -n "$m4_toupper($1)" || { AC_PATH_PROG(m4_toupper($1), m4_default($2,$1)) }
test -n "$m4_toupper($1)" || AC_MSG_ERROR([m4_default($2,$1) is required])
])

Expand Down
3 changes: 1 addition & 2 deletions vcsh.in
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,7 @@ write_gitignore() {
done
IFS=$OLDIFS
if diff -N "$tempfile" "$VCSH_BASE/.gitignore.d/$VCSH_REPO_NAME" > /dev/null; then
rm -f "$tempfile" || error "could not delete '$tempfile'"
exit
rm -f "$tempfile" || fatal "could not delete '$tempfile'" 59
fi
if [ -e "$VCSH_BASE/.gitignore.d/$VCSH_REPO_NAME" ]; then
info "'$VCSH_BASE/.gitignore.d/$VCSH_REPO_NAME' differs from new data, moving it to '$VCSH_BASE/.gitignore.d/$VCSH_REPO_NAME.bak'"
Expand Down

0 comments on commit d0d0d68

Please sign in to comment.