Skip to content

Commit

Permalink
updateminiupnpcstrings.sh: fix. "rm -v" is nonstandard
Browse files Browse the repository at this point in the history
  • Loading branch information
miniupnp committed Sep 28, 2021
1 parent d61d3e6 commit d4610f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions miniupnpc/updateminiupnpcstrings.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /bin/sh
# $Id: updateminiupnpcstrings.sh,v 1.7 2011/01/04 11:41:53 nanard Exp $
# $Id: updateminiupnpcstrings.sh,v 1.9 2021/09/28 21:37:53 nanard Exp $
# project miniupnp : http://miniupnp.free.fr/
# (c) 2009-2021 Thomas Bernard

Expand Down Expand Up @@ -60,5 +60,5 @@ sed -e "$EXPR" < $TEMPLATE_FILE > $TMPFILE
EXPR="s|MINIUPNPC_VERSION_STRING \".*\"|MINIUPNPC_VERSION_STRING \"${MINIUPNPC_VERSION}\"|"
echo "setting MINIUPNPC_VERSION_STRING macro value to ${MINIUPNPC_VERSION} in $FILE."
sed -e "$EXPR" < $TMPFILE > $FILE
rm -v $TMPFILE
rm $TMPFILE && echo "$TMPFILE deleted"

0 comments on commit d4610f4

Please sign in to comment.