Fix group attribute syntax: use correct [group('name')] format

- Change all [group: 'name'] to [group('name')] per Just documentation
- Ensures compatibility with Just 1.21.0 and resolves 'Unknown attribute group' error
- Affects all just-commons files: container, volumes, postgres, mysql, images, registry, core
This commit is contained in:
sha
2025-09-27 01:15:35 +03:00
parent e2da0282ec
commit 5fd0e0370c
7 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -246,7 +246,7 @@ mysql-shell service="mysql" compose-file="":
fi
# Restore MySQL database from backup file
[group: 'database']
[group('database')]
mysql-restore backup_file database service="mysql" compose-file="" backup_path="./backups":
#!/usr/bin/env bash
set -euo pipefail