git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob ae16cf9288dec4eaa176dedab8838acbab99837f 313 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
18
 
#!/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

rm -f "$out+" "$out" &&
"${args[@]}" -o "$out+" "$1" &&
mv "$out+" "$out"

debug log:

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

applying [1/1] 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

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

index at:
100755 ae16cf9288dec4eaa176dedab8838acbab99837f	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).