Check for synq metadata file to determine if mod was fetched from PWS

This commit is contained in:
Björn Dahlgren 2014-11-10 00:50:17 +01:00
parent f172e85e2c
commit 48e2655bff

View File

@ -49,7 +49,7 @@ function walk (directory) {
};
function isPlayWithSixMod(modPath, cb) {
var pwsFile = path.join(modPath, '.repository.yml');
var pwsFile = path.join(modPath, '.synq.json');
fs.exists(pwsFile, function (exists) {
if (cb) {
cb(exists);