commit c0478061f8110d1fe4f669bd59a9ff0fb65acebb parent 17f019c4871a371619c4aea33c7cc99de94525be Author: Jan Pobrislo <ccx@te2000.cz> Date: Sun, 26 Oct 2025 22:50:08 +0000 fix sed command in pthbs-enter-gen Diffstat:
| M | command/pthbs-enter-gen | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/command/pthbs-enter-gen b/command/pthbs-enter-gen @@ -33,7 +33,7 @@ if test -d "$envtop/.env-template"; then printf >2 'Error: expected plain file while generating env: %s\n' "$f" exit 1 fi - sed "s|@ENVROOT@|$envtop" <"$f" >"$envdir/${f##*/}" + sed "s|@ENVROOT@|$envtop|g" <"$f" >"$envdir/${f##*/}" done fi