Try to fix autorestore posix compatibility

This commit is contained in:
Maxime Coste 2016-10-17 21:31:56 +01:00
parent e318190a59
commit 658d993d71

View File

@ -12,9 +12,8 @@ def autorestore-restore-buffer -docstring "Restore the backup for the current fi
## Find the name of the latest backup created for the buffer that was open ## Find the name of the latest backup created for the buffer that was open
## The backup file has to have been last modified more recently than the file we are editing ## The backup file has to have been last modified more recently than the file we are editing
## Other backups are removed ## Other backups are removed
backup_path=$(find "${buffer_dirname}" -maxdepth 1 -type f -readable -name "\.${buffer_basename}\.kak\.*" \ backup_path=$(find "${buffer_dirname}" -maxdepth 1 -type f -name "\.${buffer_basename}\.kak\.*" \
\( \( -newer "${kak_buffile}" -printf '%A@/%p\n' \) -o \( -delete \) \) 2>/dev/null | \( \( -newer "${kak_buffile}" -exec ls -1t {} + \) -o \( -exec rm {} \; \) \) 2>/dev/null)
sort -n -t. -k1 | sed 's/^[^\/]\+\///')
if [ -z "${backup_path}" ]; then if [ -z "${backup_path}" ]; then
exit exit