git@vger.kernel.org list mirror (unofficial, one of many)
 help / color / mirror / code / Atom feed
blob 8dbe4fc3728564267ddd75495da037f888659aa0 295 bytes (raw)
name: Documentation/asciidoc-helper.sh 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
 
#!/bin/bash

# This helper is a workaround for an interruption bug in asciidoc:
# https://github.com/asciidoc-py/asciidoc-py/pull/195

args=()

while [ $# -gt 1 ]; do
	case $1 in
	-o) shift; out="$1" ;;
	*) args+=("$1")
	esac
	shift
done

"${args[@]}" -o "$out" "$1" ||
{ rm -f "$out"; false; }

debug log:

solving 8dbe4fc372 ...
found 8dbe4fc372 in https://public-inbox.org/git/20210512222803.508446-5-felipe.contreras@gmail.com/
found ae16cf9288 in https://public-inbox.org/git/20210512222803.508446-3-felipe.contreras@gmail.com/

applying [1/2] https://public-inbox.org/git/20210512222803.508446-3-felipe.contreras@gmail.com/
diff --git a/Documentation/asciidoc-helper.sh b/Documentation/asciidoc-helper.sh
new file mode 100755
index 0000000000..ae16cf9288


applying [2/2] https://public-inbox.org/git/20210512222803.508446-5-felipe.contreras@gmail.com/
diff --git a/Documentation/asciidoc-helper.sh b/Documentation/asciidoc-helper.sh
index ae16cf9288..8dbe4fc372 100755

Checking patch Documentation/asciidoc-helper.sh...
Applied patch Documentation/asciidoc-helper.sh cleanly.
Checking patch Documentation/asciidoc-helper.sh...
Applied patch Documentation/asciidoc-helper.sh cleanly.

index at:
100755 8dbe4fc3728564267ddd75495da037f888659aa0	Documentation/asciidoc-helper.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).