You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the BuildSourceArchive function in source-archive-utils.js file, local toolkits gets added to the archive in the directory toolkits/${tk.tk} by the following line toolkitPaths.forEach(tk => archive.directory(tk.tkPath, 'toolkits/${tk.tk}'));.
All the toolkits end up getting added to toolkits/undefined in the archive since tk has only the name and tkPath variables.
I think it can be fixed by changing tk.tk to tk.name.
The text was updated successfully, but these errors were encountered:
Kyrellos-Salib
changed the title
toolkit directory in the archive
toolkit directory in the archive is undefined
May 29, 2019
* The package will be able to read intervals for the toolkit dependencies from the info.xml file (ex: [2.0.0,3.0.0))
* Created 1 or more tests for most exported util functions and made minor fixes to some of them.
fix for #50
In the BuildSourceArchive function in source-archive-utils.js file, local toolkits gets added to the archive in the directory
toolkits/${tk.tk}
by the following linetoolkitPaths.forEach(tk => archive.directory(tk.tkPath, 'toolkits/${tk.tk}'));
.All the toolkits end up getting added to toolkits/undefined in the archive since tk has only the name and tkPath variables.
I think it can be fixed by changing tk.tk to tk.name.
The text was updated successfully, but these errors were encountered: