Skip to content

Commit

Permalink
Bugfix: linter error was still present
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Büchse <matthias.buechse@cloudandheat.com>
  • Loading branch information
mbuechse committed Nov 21, 2023
1 parent 19d66f9 commit 6625194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion populateStds.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Object.entries(tracks).forEach((trackEntry) => {
}
trackItem.items.push(standardItem)
var slines = readPrefixLines(`standards/${track.toLowerCase()}/scs-${adrId}.md`)
if (!slines.length) slines.push(`scs-${adrId}: ${description}\n`)
if (!slines.length) slines.push(`# scs-${adrId}: ${description}\n`)
slines.push('| Version | Type | State | stabilized | obsoleted |')
slines.push('| -------- | ----- | ------- | ---------- | --------- |')
var link = `[${icon} scs-${adrId}](/standards/${track.toLowerCase()}/scs-${adrId})`
Expand Down

0 comments on commit 6625194

Please sign in to comment.