Diff

Differences From Artifact [4a474661c0]:

To Artifact [188d2f0127]:


1
2

3
4
5



6
7
8
9
10
1
2
3



4
5
6
7
8
9
10
11


+
-
-
-
+
+
+





#! /usr/bin/env bash

PATCH="${PATCH:-patch}"
if [ ! -x "$(which patch 2>/dev/null)" ]; then
	echo "No \"patch\" command."
	echo "No \"patch\" command." >&4
if [ ! -x "$(which "${PATCH}" 2>/dev/null)" ]; then
	echo "No \"${PATCH}\" command (for patch)."
	echo "No \"${PATCH}\" command (for patch)." >&4

	exit 1
fi

exit 0