From 67e08eef7aada6a1eb136cf1255dc7b4708133b1 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 30 Jul 2013 00:55:06 -0500 Subject: [PATCH] Bugfix: rename functions that should be kit_core_* and not standard_* --- sources/sh/kit-core | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/sh/kit-core b/sources/sh/kit-core index 30aa5c6..720e4d7 100755 --- a/sources/sh/kit-core +++ b/sources/sh/kit-core @@ -125,11 +125,11 @@ kit_core_directory_ending(){ echo -n $(echo $i | sed -e 's|/*$|/|') } -standard_datetimestamp(){ +kit_core_datetimestamp(){ echo -n $(date +%Y-%m-%dT%H:%M:%S%z) } -standard_datetimestamp_safe(){ +kit_core_datetimestamp_safe(){ echo -n $(date +%Y_%m_%d-%H_%M_%S%z) } -- 1.8.3.1