Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 20 Sep 2015 15:53:13 UTC Commit: c081983e850c4c49df208d603459e79555f22d50 https://github.com/geany/geany/commit/c081983e850c4c49df208d603459e79555f22d...
Log Message: ----------- Scintilla update script: properly abort on lexer copy error
Modified Paths: -------------- scripts/update-scintilla.sh
Modified: scripts/update-scintilla.sh 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -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 || {
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).