aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlib/_ak_script6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/_ak_script b/lib/_ak_script
index f24fbc9..97013fb 100755
--- a/lib/_ak_script
+++ b/lib/_ak_script
@@ -75,7 +75,7 @@ _ak_make_temp_directory(){
_ak_log_error "Could not make $AK_TEMP directory to work in"
exit 1
fi
- _ak_log_info "$AK_TEMP created successfully"
+ _ak_log_info "Directory $AK_TEMP created successfully"
echo "$AK_TEMP"
}
@@ -83,9 +83,9 @@ _ak_make_temp_file(){
AK_TEMP="$(mktemp /tmp/aktmp-XXXXXXX)"
if [ ! -f "$AK_TEMP" ]
then
- _ak_log_error "Could not make $AK_TEMP directory to work in"
+ _ak_log_error "Could not make $AK_TEMP file to work in"
exit 1
fi
- _ak_log_info "$AK_TEMP created successfully"
+ _ak_log_info "File $AK_TEMP created successfully"
echo "$AK_TEMP"
}