diff options
-rwxr-xr-x | metadot | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ function metadot_backup { # Find contents of a module function __metadot_find { local module="$1" - ( cd $MODULES/$module && find -name '*.link' -or -name '*.dot.link' ) | grep -v '.git/modules' | sed -e 's|./||' + ( cd $MODULES/$module && find . -name '*.link' -or -name '*.dot.link' ) | grep -v '.git/modules' | sed -e 's|./||' } # Load a module |