Add scripts/shell/job/gp/create-dodeploy-files-from-failed-files.sh file

This commit is contained in:
Matheus Albino Brunhara
2024-04-12 14:41:30 -03:00
parent f577f2141f
commit 554da9689f

View File

@@ -0,0 +1,6 @@
#!/bin/bash
for f in *.failed; do
touch ${f%".failed"}.dodeploy;
rm $f;
done