Fix updating helper scripts after script update
This commit is contained in:
parent
5b637cf84d
commit
b12f4589f5
3 changed files with 5 additions and 5 deletions
4
Makefile
4
Makefile
|
@ -3,8 +3,8 @@
|
|||
MAKEFLAGS += -s
|
||||
|
||||
all:
|
||||
CURRENT_SCRIPT_VERSION=`grep "CURRENT_SCRIPT_VERSION=" msman.sh | sed -e "s/CURRENT_SCRIPT_VERSION=//g"`; \
|
||||
EXTRA_VERSION=`grep "EXTRA_SCRIPTS_VERSION=" .msman/version.sh | sed -e "s/EXTRA_SCRIPTS_VERSION=//g"`; \
|
||||
CURRENT_SCRIPT_VERSION=`grep "CURRENT_SCRIPT_VERSION=" msman.sh | sed -e "s/CURRENT_SCRIPT_VERSION=//g" | sed '$d'`; \
|
||||
EXTRA_VERSION=`grep "EXTRA_SCRIPTS_VERSION=" .msman/version.sh | sed -e "s/EXTRA_SCRIPTS_VERSION=//g" | sed '$d'`; \
|
||||
if [ "$$CURRENT_SCRIPT_VERSION" != "$$EXTRA_VERSION" ]; then \
|
||||
echo "ERROR: The version in msman.sh and .msman/version.sh are not the same!"; \
|
||||
echo "ERROR: Please make sure they are the same."; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue