Mercurial > vim
view src/pathdef.sh @ 23571:b02ac00aacbf v8.2.2328
patch 8.2.2328: some test files may not be deleted
Commit: https://github.com/vim/vim/commit/48e11c10548782f573411b6302f77adb69c40401
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jan 11 18:47:00 2021 +0100
patch 8.2.2328: some test files may not be deleted
Problem: Some test files may not be deleted.
Solution: Add a delete() call, correct name. (Dominique Pell?, closes https://github.com/vim/vim/issues/7654)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 11 Jan 2021 19:00:07 +0100 |
parents | 3fc0f57ecb91 |
children |
line wrap: on
line source
#! /bin/sh # # pathdef.sh: adjust pathdef.c for auto/link.sed, if it exists # if test -s auto/link.sed; then cp auto/pathdef.c auto/pathdef.tmp sed -f auto/link.sed <auto/pathdef.tmp >auto/pathdef.c rm -f auto/pathdef.tmp fi # vim:set sw=2 et: