fix ci?
Some checks failed
Compile LaTeX document / build (push) Successful in 38s
Compile LaTeX document / latex_spellcheck (push) Failing after 5s

This commit is contained in:
Philipp Hofer 2025-01-09 09:20:17 +01:00
parent 7374c81375
commit a9563f5405

View File

@ -49,9 +49,17 @@ jobs:
run: |
echo "need_node=$(command -v node >/dev/null 2>&1 && echo 0 || echo 1)" >> $GITHUB_OUTPUT
- name: "Usr merge"
id: prereq
id: usrmerge
run: |
apt update -y && apt install -y usrmerge
sudo cp -ax /bin /bin.backup
# Convert /bin to a symlink
sudo mv /bin/* /usr/bin/
sudo rmdir /bin
sudo ln -s usr/bin /bin
# Now try installing usrmerge again
sudo apt update && sudo apt install -y usrmerge
- name: Install node
if: ${{ steps.prereq.outputs.need_node == '1' }}
run: |