diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | core/metaprogramming.nom | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -89,7 +89,7 @@ uninstall: version version="$(UNINSTALL_VERSION)"; \ if [[ ! $$version ]]; then version="`cat version`"; fi;\ rm -rvf $$prefix/lib/nomsu/$$version $$prefix/share/nomsu/$$version $$prefix/bin/nomsu$$version; \ - if [[ "`find -E $$prefix/bin -type f -regex '.*/nomsu[0-9.]+\$$'`" == "" ]]; then \ + if [[ "`find $$prefix/bin -type f -regex '.*/nomsu[0-9.]+\$$'`" == "" ]]; then \ rm -vf $$prefix/bin/nomsu $$prefix/share/man/man1/nomsu.1; \ else \ if [ -f $$prefix/bin/nomsu ]; then \ diff --git a/core/metaprogramming.nom b/core/metaprogramming.nom index 180614b..6ee9f13 100644 --- a/core/metaprogramming.nom +++ b/core/metaprogramming.nom @@ -3,7 +3,7 @@ This File contains actions for making actions and compile-time actions and some helper functions to make that easier. -lua> "NOMSU_CORE_VERSION = 12" +lua> "NOMSU_CORE_VERSION = 13" lua> "NOMSU_LIB_VERSION = 8" lua> (" do |
