Skip to content

Commit 8ede629

Browse files
authored
fix: Expect a file instead of a folder for the localizations file. (#8)
Signed-off-by: Josh <[email protected]>
1 parent 8aacbcd commit 8ede629

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ export const ignite = async (args: string[]): Promise<void> => {
259259
const localizationsFile = path.normalize(
260260
pathCWDIfNotAbsolute(opts.descriptionFile),
261261
);
262-
if (!await pathExists(localizationsFile, true)) {
262+
if (!await pathExists(localizationsFile, false)) {
263263
logger.error('The localizations file does not exist.');
264264
return 1;
265265
}

0 commit comments

Comments
 (0)