Skip to content

Commit

Permalink
fix: remove redundant symlink from workflow
Browse files Browse the repository at this point in the history
Not needed, because luajit-openresty build ends up doing this:

    ln -sf luajit-2.1.1723681758 /home/runner/work/command-t/command-t/.lua/bin/luajit
    ==== Successfully installed LuaJIT 2.1.1723681758 to /home/runner/work/command-t/command-t/.lua ====

In fact, the removed step fails because of this:

    ln: failed to create symbolic link 'luajit': File exists

As seen in:

- https://github.com/wincent/command-t/actions/runs/11072400295/job/30766530564
  • Loading branch information
wincent committed Sep 27, 2024
1 parent 23dfd7e commit c5abb10
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/lua.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ jobs:
with:
luaVersion: luajit-openresty

- name: Symlink luajit
run: |
pushd .lua/bin
ln -s lua luajit
popd
- name: Build extension (release)
run: |
pushd lua/wincent/commandt/lib
Expand Down

0 comments on commit c5abb10

Please sign in to comment.