Skip to content

Commit

Permalink
minor verbal change
Browse files Browse the repository at this point in the history
  • Loading branch information
RedMan13 committed Dec 7, 2024
1 parent ef4b8dd commit 3388d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/virtual-machine.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ class VirtualMachine extends EventEmitter {
}
const zip = await JSZip.loadAsync(input);
const proj = zip.file('project.json');
if (!proj) return reject('No project.json file!!!!!!!!!!!');
if (!proj) return reject('No project.json file inside the given project');
const json = JSON.parse(await proj.async('string'));
json.projectVersion = !json.meta ? 2 : 3;
return resolve([json, zip]);
Expand Down

0 comments on commit 3388d41

Please sign in to comment.