🔧 Fix warning for missing tag files

This commit is contained in:
Jérôme Petazzoni
2024-11-19 00:11:08 -06:00
parent 0abc67e974
commit cd81b5287b
2 changed files with 1 additions and 1 deletions

View File

@@ -57,7 +57,7 @@ need_tag() {
if [ ! -d "tags/$TAG" ]; then
die "Tag $TAG not found (directory tags/$TAG does not exist)."
fi
for FILE in settings.env ips.txt; do
for FILE in mode provider settings.env status; do
if [ ! -f "tags/$TAG/$FILE" ]; then
warning "File tags/$TAG/$FILE not found."
fi