diff --git a/src/lib/dotify-action.sh b/src/lib/dotify-action.sh index a067498..cc68398 100644 --- a/src/lib/dotify-action.sh +++ b/src/lib/dotify-action.sh @@ -3,5 +3,9 @@ dotify-action() { local source="$2" local target="$3" - echo "${action}: $source -> $target" + if [ "$action" == "default" ]; then + action="$DOTIFY_OPT_DEFAULT_ACTION" + fi + + dotify-action-${action} "$source" "$target" }