From a15e3394a9a27488eb59960afcb35c6507bb81e5 Mon Sep 17 00:00:00 2001 From: Romain Soufflet Date: Tue, 5 May 2015 15:41:07 +0200 Subject: [PATCH] Typo in function calls The standalone execution of this script failed. --- command/json-deep-merge | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command/json-deep-merge b/command/json-deep-merge index a77c1a2..a272cd9 100755 --- a/command/json-deep-merge +++ b/command/json-deep-merge @@ -54,6 +54,6 @@ json_deep_merge_error_check() { # Only run script if params are provided. # Useful for sourcing the file for testing or direct access to functions. if [ "$#" -gt 0 ]; then - json_deepmerge "$@" - json_deepmerge_error_check "json_deepmerge" + json_deep_merge "$@" + json_deep_merge_error_check "json_deep_merge" fi