Skip to content
This repository was archived by the owner on Jan 14, 2022. It is now read-only.

Commit 28b4773

Browse files
authored
Update manifestLoader.js
1 parent 54aa8ab commit 28b4773

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/manifestTools/manifestLoader.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,9 @@ function processManifestContents (data, manifestFormat, callback) {
7171
log.warn('Forcing to format ' + manifestFormat + '...');
7272
detectedFormat = manifestFormat;
7373
} else if (!detectedFormat) {
74-
var availableFormats = listAvailableManifestFormats().join(', ');
75-
return callback(new Error('Unable to detect the input manifest format. Try specifying the correct format using the -f <format> option. Available formats are: ' + availableFormats + '.'));
74+
detectedFormat = 'w3c'
75+
// var availableFormats = listAvailableManifestFormats().join(', ');
76+
//return callback(new Error('Unable to detect the input manifest format. Try specifying the correct format using the -f <format> option. Available formats are: ' + availableFormats + '.'));
7677
}
7778

7879
log.info('Found a ' + detectedFormat + ' manifest...');

0 commit comments

Comments
 (0)