Skip to content

Commit b3795ab

Browse files
committed
1 parent 2bdde27 commit b3795ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

share/ruby-install/mruby/functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ruby_url="${ruby_url:-$ruby_mirror/$ruby_version/$ruby_archive}"
1111
function clean_ruby()
1212
{
1313
log "Cleaning mruby $ruby_version ..."
14-
run make clean || return $?
14+
run rake clean || return $?
1515
}
1616

1717
#
@@ -20,7 +20,7 @@ function clean_ruby()
2020
function compile_ruby()
2121
{
2222
log "Compiling mruby $ruby_version ..."
23-
run make -j "${make_jobs:-$(cpu_count)}" || return $?
23+
run rake -j "${make_jobs:-$(cpu_count)}" || return $?
2424
}
2525

2626
#

0 commit comments

Comments
 (0)