Skip to content

Commit

Permalink
prefix g
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed Jun 24, 2024
1 parent 21add82 commit 43075af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/react_on_all_commits_but.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,14 @@ jobs:
- name: Build README.md
if: steps.check_prefix.outputs.prefix_found == '1'
run: |
tmpfile=$(mktemp)
pushd build
npm ci
node build_readme.js > ../tmp.md
node build_readme.js > "$tmpfile"
popd
mv tmp.md README.md
mv "$tmpfile" README.md
- name: Push the changes
uses: EndBug/add-and-commit@v9
Expand Down
2 changes: 1 addition & 1 deletion bookmarklets/explain_xkcd.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const regex = /https:\/\/xkcd\.com\/(\d+)\//;
const match = url.match(regex);

if (match) {
window.location.href = `https://www.explainxkcd.com/wiki/index.php/${match[1]}`;
window.location.href = `https://ww.explainxkcd.com/wiki/index.php/${match[1]}`;
} else {
alert('That is not a XKCD page');
}

0 comments on commit 43075af

Please sign in to comment.