Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/share
diff options
context:
space:
mode:
authorBryan Drewery <bryan@shatow.net>2022-11-09 22:31:09 +0300
committerBryan Drewery <bryan@shatow.net>2022-11-10 02:06:20 +0300
commit874616addcc7eafe407fb57fe4354721e5901d4b (patch)
treec7a20d0be19a9097161f8a78fc19f8ddbc61c115 /src/share
parent48d8ce431d7559338aa626b055c72af0ec1e3c41 (diff)
mapfile sh compat: Fix handling of escapes
Diffstat (limited to 'src/share')
-rw-r--r--src/share/poudriere/include/util.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/poudriere/include/util.sh b/src/share/poudriere/include/util.sh
index 657c5a65..a4fc4d34 100644
--- a/src/share/poudriere/include/util.sh
+++ b/src/share/poudriere/include/util.sh
@@ -699,7 +699,7 @@ mapfile_read() {
fi
hash_get mapfile_fd "${handle}" fd || fd=8
- read_blocking "$@" <&${fd}
+ read_blocking -r "$@" <&${fd}
}
mapfile_write() {