Windows file names can not contain a colon

That would solve https://github.com/tmux-plugins/tmux-resurrect/issues/131
This commit is contained in:
Mario 2018-09-10 10:46:09 +02:00 committed by GitHub
parent 6feae65a83
commit 8b504d4b06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ _RESURRECT_DIR="$(resurrect_dir)"
resurrect_file_path() {
if [ -z "$_RESURRECT_FILE_PATH" ]; then
local timestamp="$(date +"%Y-%m-%dT%H:%M:%S")"
local timestamp="$(date +"%Y-%m-%dT%H-%M-%S")"
echo "$(resurrect_dir)/${RESURRECT_FILE_PREFIX}_${timestamp}.${RESURRECT_FILE_EXTENSION}"
else
echo "$_RESURRECT_FILE_PATH"