We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e437bb6 commit 5392fa1Copy full SHA for 5392fa1
.github/workflows/cleaner.yml
@@ -28,12 +28,12 @@ jobs:
28
MDS=$(ls apps/* | sed 's:.*/::; s/.md$//g')
29
PNGS=$(ls icons/* | sed 's:.*/::; s/.png$//g')
30
for m in $MDS; do
31
- if ! echo "$LIST" | grep -q "◆ $m :"; then
+ if ! echo "$LIST" 2>/dev/null | grep -q "◆ $m :"; then
32
rm -f "apps/$m.md"
33
fi
34
done
35
for p in $PNGS; do
36
- if ! echo "$LIST" | grep -q "◆ $p :"; then
+ if ! echo "$LIST" 2>/dev/null | grep -q "◆ $p :"; then
37
rm -f "icons/$p.png"
38
39
0 commit comments