view src/pathdef.sh @ 24418:baf4913fe21c v8.2.2749

patch 8.2.2749: Vim9: test for error can be a bit flaky Commit: https://github.com/vim/vim/commit/fe95b94ffa75c4925ad16c43f94092f2b1d35fc6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 10 20:52:43 2021 +0200 patch 8.2.2749: Vim9: test for error can be a bit flaky Problem: Vim9: test for error can be a bit flaky. Solution: Increase the wait time a bit.
author Bram Moolenaar <Bram@vim.org>
date Sat, 10 Apr 2021 21:00:04 +0200
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: