small pixel drawing of a pufferfish j3s.sh

correct stderr redirects
Jes Olson j3s@c3f.net
Fri, 22 Nov 2024 23:53:55 -0500
commit

cc3c8f66cf7516785b8e9a0aab0ef0850a5e7a0a

parent

545a06ba19516555c5d1f6412a1a00e5f80534a3

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M thought/my-deployment-platform-is-a-shell-script.htmlthought/my-deployment-platform-is-a-shell-script.html

@@ -42,8 +42,8 @@ }

cd /root for project in $(ls go-cicd); do - cd "/root/go-cicd/$project" 2>&1 >> /root/gocicd.log - git fetch origin 2>&1 >> /root/gocicd.log + cd "/root/go-cicd/$project" >> /root/gocicd.log 2>&1 + git fetch origin >> /root/gocicd.log 2>&1 if git status | grep -q behind; then println "$(date): building $project" git merge origin/main ||