1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00

Add note about hex literal workaround.

This commit is contained in:
Ben Wolsieffer 2021-10-12 09:28:32 -04:00
parent 9cb56b730b
commit 44fa801bab

View file

@ -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"