Fix 'enable' tag attribute (#53)

This commit is contained in:
Jakub Bacic
2021-03-30 13:11:51 +02:00
committed by GitHub
parent 72654174f7
commit b909bd34ef
3 changed files with 79 additions and 1 deletions

3
dist/index.js generated vendored
View File

@ -361,6 +361,9 @@ class Meta {
latest: undefined
};
for (const tag of this.tags) {
if (tag.attrs['enable'] == 'false') {
continue;
}
switch (tag.type) {
case tcl.Type.Schedule: {
version = this.procSchedule(version, tag);