From c081983e850c4c49df208d603459e79555f22d50 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Sun, 20 Sep 2015 17:53:13 +0200 Subject: [PATCH] Scintilla update script: properly abort on lexer copy error --- scripts/update-scintilla.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-scintilla.sh b/scripts/update-scintilla.sh index 5efd3eec0..ce6e7e99e 100755 --- a/scripts/update-scintilla.sh +++ b/scripts/update-scintilla.sh @@ -50,7 +50,7 @@ cp -v "$SCI_SRC"/version.txt scintilla || exit 1 # now copy the lexers we use git ls-files scintilla/lexers/*.cxx | sed 's%^scintilla/%./%' | while read f; do cp -v "$SCI_SRC/$f" "scintilla/$f" || exit 1 -done +done || exit 1 # apply our patch git apply -p0 scintilla/scintilla_changes.patch || {