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

john20xdoe picture john20xdoe  路  3Comments

GitHubOrim picture GitHubOrim  路  3Comments

ga5tan picture ga5tan  路  3Comments

ahsansolution picture ahsansolution  路  3Comments

stepankurdylo picture stepankurdylo  路  3Comments