Skip to content

Commit

Permalink
chore(ci): fix luarocks script redirect typo (#14153)
Browse files Browse the repository at this point in the history
  • Loading branch information
windmgc authored Jan 22, 2025
1 parent c4093c0 commit 78c6923
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build/luarocks/templates/luarocks_make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mkdir -p $(dirname $@)
# alias LDOC command to true(1) command
export LDOC=true

$luarocks_exec make --no-doc 2>&1 >$@.tmp
$luarocks_exec make --no-doc >$@.tmp 2>&1

# only generate the output when the command succeeds
mv $@.tmp $@
mv $@.tmp $@
4 changes: 2 additions & 2 deletions build/luarocks/templates/luarocks_target.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EOF
export LUAROCKS_CONFIG=$ROCKS_CONFIG

$host_luajit $luarocks_wrap_script \
luarocks $rocks_tree $install_destdir 2>&1 > $@.tmp
luarocks $rocks_tree $install_destdir > $@.tmp 2>&1

# write the luarocks config with host configuration
mkdir -p $rocks_tree/etc/luarocks
Expand All @@ -55,4 +55,4 @@ sed -i -e "s|$build_destdir|$install_destdir|g" $rocks_tree/bin/luarocks
sed -i -e "s|$rocks_tree|$install_destdir|g" $rocks_tree/bin/luarocks

# only generate the output when the command succeeds
mv $@.tmp $@
mv $@.tmp $@

1 comment on commit 78c6923

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong-dev:78c6923b1786b1493055c2dfa13f390c68110b85
Artifacts available https://github.com/Kong/kong/actions/runs/12905904186

Please sign in to comment.