Skip to content

Commit 7bd4134

Browse files
authored
Merge pull request #12 from edcdavid/fix-comments-not-pushed
Fix comments not pushed from David R.
2 parents 5e2e243 + e7f870a commit 7bd4134

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/checkbuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: install nodejs
16-
run: sudo apt-get update; sudo apt-get -y install nodejs npm; npm install inline-source
16+
run: sudo apt-get update && sudo apt-get -y install nodejs npm && npm install inline-source
1717
- name: modify build sccript
1818
run: sed -i 's/results.html/test.html/g' html/build.js
1919
- name: generate test.html
20-
run: cd html; node build.js
20+
run: cd html && node build.js
2121
- name: compare results.html with test.html
22-
run: cd html;diff results.html test.html
22+
run: cd html && diff results.html test.html

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
node_modules
1+
node_modules

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
build:
2-
cd html;node build.js
2+
cd html && node build.js

html/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ inline.inlineSource(htmlFile, options)
1313
})
1414
.catch((err) => {
1515
console.error('Error during build:', err);
16-
});
16+
});

html/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,4 @@ <h5 class="modal-title" id="staticBackdropLabel">Warning</h5>
158158

159159
</body>
160160

161-
</html>
161+
</html>

html/results.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,4 @@ <h5 class="modal-title" id="staticBackdropLabel">Warning</h5>
158158

159159
</body>
160160

161-
</html>
161+
</html>

0 commit comments

Comments
 (0)