all repos — hex @ bfd76010e13b6941ab153df32c4a6ed10fdb84d7

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Fixes.
h3rald h3rald@h3rald.com
Thu, 05 Dec 2024 09:33:49 +0100
commit

bfd76010e13b6941ab153df32c4a6ed10fdb84d7

parent

88b5dfde1f7e02bb657d9e90d0ce719b5c2e4b5e

1 files changed, 5 insertions(+), 5 deletions(-)

jump to
M .github/workflows/release.yml.github/workflows/release.yml

@@ -36,13 +36,13 @@

# Install cosmocc - name: Install cosmocc run: | - mkdir -p cosmocc - cd cosmocc - wget https://cosmo.zip/pub/cosmocc/cosmocc.zip - unzip cosmocc.zip + mkdir -p $HOME/cosmocc + cd $HOME/cosmocc + wget -q https://cosmo.zip/pub/cosmocc/cosmocc.zip + unzip -q cosmocc.zip pwd ls -l - echo pwd >> $GITHUB_PATH + echo $(pwd)/bin >> $GITHUB_PATH if: matrix.os == 'ubuntu-latest' # Setup emsdk