Skip to content

Commit

Permalink
refactor(architectures): add newline to end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
ttshivers committed Sep 30, 2020
1 parent 973dcdb commit cb4efc3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 10/architectures
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ arm32v7 alpine3.10,alpine3.11,alpine3.9,buster,buster-slim,stretch,stretc
arm64v8 alpine3.10,alpine3.11,alpine3.9,buster,buster-slim,stretch,stretch-slim
i386 alpine3.10,alpine3.11,alpine3.9
ppc64le alpine3.10,alpine3.11,alpine3.9,buster,buster-slim
s390x alpine3.10,alpine3.11,alpine3.9,buster,buster-slim
s390x alpine3.10,alpine3.11,alpine3.9,buster,buster-slim
2 changes: 1 addition & 1 deletion 12/architectures
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ arm32v7 alpine3.10,alpine3.11,alpine3.12,alpine3.9,buster,buster-slim,str
arm64v8 alpine3.10,alpine3.11,alpine3.12,alpine3.9,buster,buster-slim,stretch,stretch-slim
i386 alpine3.10,alpine3.11,alpine3.12,alpine3.9
ppc64le alpine3.10,alpine3.11,alpine3.12,alpine3.9,buster,buster-slim
s390x alpine3.10,alpine3.11,alpine3.12,alpine3.9,buster,buster-slim
s390x alpine3.10,alpine3.11,alpine3.12,alpine3.9,buster,buster-slim
2 changes: 1 addition & 1 deletion 14/architectures
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ arm32v7 alpine3.10,alpine3.11,alpine3.12,buster,buster-slim,stretch,stret
arm64v8 alpine3.10,alpine3.11,alpine3.12,buster,buster-slim,stretch,stretch-slim
i386 alpine3.10,alpine3.11,alpine3.12
ppc64le alpine3.10,alpine3.11,alpine3.12,buster,buster-slim
s390x alpine3.10,alpine3.11,alpine3.12,buster,buster-slim
s390x alpine3.10,alpine3.11,alpine3.12,buster,buster-slim
2 changes: 1 addition & 1 deletion updateArches.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const storeArchitectures = (variantArches, architecturesFile) => {

const str = Object.entries(data)
.map((entry) => formatEntry(entry, variantOffset))
.join('\n');
.join('\n') + '\n';

writeFileSync(architecturesFile, str);

Expand Down

0 comments on commit cb4efc3

Please sign in to comment.