Serenity: Windows/Linux/Mac OS X: Serin Error Couldn't read template source URL from VSGallery

Created on 9 Jan 2018  路  2Comments  路  Source: serenity-is/Serenity

Hello All,

I have searched for a resolution to this but I cannot find something.

Using:
serin v3.3.1500
node v9.2.1
npm v5.6.0

I have tried on 3 different machines to get this working but I keep getting the same error:

Couldn't read template source URL from VSGallery.

Update:
Did a little bit of digging around. After looking at the the serin/index.js file I found that the error I get is from -
...
if (!assetSource) { console.error("Couldn't read template source URL from VSGallery."); process.exit(); }
....

Any help would be appreciated.

Most helpful comment

replace
if (f && f.assetType && f.assetType.endsWith('/Serene.Template.vsix'))
to
if (f && f.assetType && f.assetType.endsWith('Serene.Template.vsix'))

in file _serin/index.js_
at line 188

All 2 comments

replace
if (f && f.assetType && f.assetType.endsWith('/Serene.Template.vsix'))
to
if (f && f.assetType && f.assetType.endsWith('Serene.Template.vsix'))

in file _serin/index.js_
at line 188

Worked like a charm! Thank you very much!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Shraddha996 picture Shraddha996  路  3Comments

Akarsh03 picture Akarsh03  路  3Comments

dkontod picture dkontod  路  3Comments

ga5tan picture ga5tan  路  3Comments

Pinellus picture Pinellus  路  3Comments