From 012840b9d89064dc96b9d2be363ae88026012943 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Mon, 15 Dec 2025 21:27:30 +0100 Subject: [PATCH] fix uinit --- .woodpecker/build.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index f552209..642cbe7 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -16,6 +16,7 @@ steps: - grep foobar t/file* - cp t/file1 t/huh.1 - cp t/file1 t/mor.2 - - cd t && perl subst -m 's/(huh|mor)/sub/g' '/.\d$/' - - ls -l t/sub.1 - - ls -l t/sub.2 + - cd t && perl ../subst -m 's/(huh|mor)/sub/g' '/.\d$/' + - ls -l t/sub.1 t/sub.2 + - perl subst -m 's/sub/ord/g' t + - ls -l t/ord.1 t/ord.2