From dee18016c76d3d90bf4d3dc0b7d54f21cdcb33aa Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Mon, 15 Dec 2025 21:15:19 +0100 Subject: [PATCH] fix exec --- .woodpecker/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index a9bb0dd..ac9b70b 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -12,10 +12,10 @@ steps: event: [push] image: ${image} commands: - - subst -r 's/2025/foobar/' t/file* + - perl subst -r 's/2025/foobar/' t/file* - grep foobar t/file* - cp t/file1 t/huh.1 - cp t/file1 t/mor.2 - - subst -m 's/(huh|mor)/sub/g' '/.\d$/' + - perl subst -m 's/(huh|mor)/sub/g' '/.\d$/' - ls -l t/sub.1 - ls -l t/sub.2