Skip to content
Snippets Groups Projects
Commit 51e29723 authored by Lucas Magalhães's avatar Lucas Magalhães
Browse files

Remove all bashisms from makefiles

parent 8d43c6b5
No related branches found
No related tags found
No related merge requests found
# -*- mode: Makefile;-*- # -*- mode: Makefile;-*-
# Update the module version (for numeric versions) with a build number of 0 if none is specified # Update the module version (for numeric versions) with a build number of 0 if none is specified
E3_MODULE_VERSION:=$(E3_MODULE_VERSION)$(shell [[ "$(E3_MODULE_VERSION)" =~ ^[0-9]+\.[0-9]+\.[0-9]+$$ ]] && echo +0) E3_MODULE_VERSION:=$(E3_MODULE_VERSION)$(shell (echo "$(E3_MODULE_VERSION)" | grep -Eq "^[0-9]+\.[0-9]+\.[0-9]+\$$") && echo +0)
E3_MODULES_PATH?=$(E3_SITEMODS_PATH) E3_MODULES_PATH?=$(E3_SITEMODS_PATH)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment