From 44fa801babccaa669f11ef774509c855a823d76d Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Tue, 12 Oct 2021 09:28:32 -0400 Subject: [PATCH] Add note about hex literal workaround. --- distros/catkin-setup-hook/setup-hook.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/distros/catkin-setup-hook/setup-hook.sh b/distros/catkin-setup-hook/setup-hook.sh index 9e21fdf639..5083862ee9 100644 --- a/distros/catkin-setup-hook/setup-hook.sh +++ b/distros/catkin-setup-hook/setup-hook.sh @@ -42,6 +42,8 @@ _runCatkinEnvHook() { _runCatkinEnvHooksArray() { # Run hooks in sorted order of their file names # This would fail if a filename contained EOT + + # Work around https://github.com/NixOS/nix/issues/5262 local eot=$(printf '\004') while IFS= read -rd '' hook; do _runCatkinEnvHook "$hook"