commit c67b9d4ee26197c42e846b527841dfe956c324c6
parent 49151b1a096facf2ab476d40390f4c7dcd75d2f8
Author: Vincent Demeester <vincent@sbr.pm>
Date: Thu, 1 Sep 2022 14:59:47 +0200
systems/aomi: fix alpine regexp
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/systems/hosts/aomi.nix b/systems/hosts/aomi.nix
@@ -99,7 +99,7 @@ in
};
"images-by-tag-regex" = {
# sync all "3.x" images"
- "alpine" = "^[3-0]\.[0-9]+$";
+ "alpine" = "^[1-9]\.[0-9]+$";
};
};
};