Skip to content

Commit 0197f7a

Browse files
authored
Merge pull request #1202 from david-roper/main
set commit id length to minimum 1
2 parents c04b8b2 + a3c44dd commit 0197f7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/schemas/src/setup/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export type DevelopmentReleaseInfo = z.infer<typeof $DevelopmentReleaseInfo>;
88
export const $DevelopmentReleaseInfo = z.object({
99
branch: z.string().min(1),
1010
buildTime: z.number(),
11-
commit: z.string().length(8),
11+
commit: z.string().min(1),
1212
type: z.enum(['development', 'test']),
1313
version: $ReleaseVersion
1414
});

0 commit comments

Comments
 (0)