diff options
Diffstat (limited to 'publish')
-rwxr-xr-x | publish | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ history_append() { time=$(date --utc --rfc-3339='seconds') echo $time $1 $2 >>"$history_file" - history_tmp=$( tempfile ) + history_tmp=$( mktemp ) cat "$history_file" | tail --lines="$history_lines" >"$history_tmp" mv "$history_tmp" "$history_file" } |