File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11Binary packages
22---------------
33
4- * Better error messages
5- * Show 'Downloading' and 'Installing' messages a la ruby-build
4+ X Better error messages
5+ X Show 'Downloading' and 'Installing' messages a la ruby-build
66* Rewrite RbConfig::CONFIG['CC'] on install
77* Patch rbx since the rewriter doesn't work there
88* rbenv-install should check for binary packages before building
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ if [ -n "$check" ]; then
6464 } >&2
6565else
6666 package_filename=" ${TMPDIR} /${package_name} .$$ "
67+ echo " Downloading $package_url ..." >&2
6768 download " $package_url " " $package_filename " || {
6869 echo " error: couldn't fetch package \` $package ' ($package_url )"
6970 exit 1
Original file line number Diff line number Diff line change 3737trap cleanup_packages SIGINT SIGTERM EXIT
3838
3939package_root=" $( ruby-package unpack " $package_file " ) "
40+ package_name=" $( cat " ${package_root} /metadata/package" ) "
4041
42+ echo " Installing ${package_name} ..." >&2
4143" ${package_root} /bin/ruby-package-install" " $destination "
44+ echo " Installed ${package_name} to ${destination} " >&2
You can’t perform that action at this time.
0 commit comments