correct stderr redirects
Jes Olson j3s@c3f.net
Fri, 22 Nov 2024 23:53:55 -0500
1 files changed,
2 insertions(+),
2 deletions(-)
M
thought/my-deployment-platform-is-a-shell-script.html
→
thought/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 ||