diff --git a/src/ssn/verify/verifyPatch.ts b/src/ssn/verify/verifyPatch.ts index 8c10a22..fc0c480 100644 --- a/src/ssn/verify/verifyPatch.ts +++ b/src/ssn/verify/verifyPatch.ts @@ -12,7 +12,7 @@ export default function verifyPatch(fileEntries: ISsnFileEntry[], product: Produ //Check that last file is the .version file with diffType 0. const lastFile = fileEntries[fileEntries.length - 1]; const validLastFileName = `${product}.version`; - const validLastFileAlternate = `Assets/assets_${product}_version.txt`; + const validLastFileAlternate = `Assets/${product}_version.txt`; if (lastFile.name === validLastFileName) { if (lastFile.diffType !== SsnDiffType.NewFile) { throw new Error(`Last file (.version file) must have diffType 0 but it had diffType ${lastFile.diffType}.`);