Skip to content

Commit

Permalink
addressing comments from David R.
Browse files Browse the repository at this point in the history
  • Loading branch information
edcdavid committed Jul 27, 2023
1 parent c3ae151 commit 128539e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checkbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: install nodejs
run: sudo apt-get update; sudo apt-get -y install nodejs npm; npm install inline-source
run: sudo apt-get update && sudo apt-get -y install nodejs npm && npm install inline-source
- name: modify build sccript
run: sed -i 's/results.html/test.html/g' html/build.js
- name: generate test.html
run: cd html; node build.js
run: cd html && node build.js
- name: compare results.html with test.html
run: cd html;diff results.html test.html
run: cd html && diff results.html test.html
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
node_modules
node_modules
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
build:
cd html;node build.js
cd html && node build.js
2 changes: 1 addition & 1 deletion html/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ inline.inlineSource(htmlFile, options)
})
.catch((err) => {
console.error('Error during build:', err);
});
});
2 changes: 1 addition & 1 deletion html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ <h5 class="modal-title" id="staticBackdropLabel">Warning</h5>

</body>

</html>
</html>
2 changes: 1 addition & 1 deletion html/results.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ <h5 class="modal-title" id="staticBackdropLabel">Warning</h5>

</body>

</html>
</html>

0 comments on commit 128539e

Please sign in to comment.