Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): fix luarocks script redirect typo #14153

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 >[email protected]
$luarocks_exec make --no-doc >[email protected] 2>&1

# only generate the output when the command succeeds
mv [email protected] $@
mv [email protected] $@
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 > [email protected]
luarocks $rocks_tree $install_destdir > [email protected] 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 [email protected] $@
mv [email protected] $@
Loading