File: install.sh

package info (click to toggle)
linuxbrew-wrapper 20180923-1
  • links: PTS, VCS
  • area: contrib
  • in suites: buster
  • size: 160 kB
  • sloc: ruby: 677; sh: 73; makefile: 6
file content (7 lines) | stat: -rwxr-xr-x 302 bytes parent folder | download
1
2
3
4
5
6
7
#!/bin/sh
set -e
umask 022
if test -n "$HOMEBREW_FORCE_VENDOR_RUBY" || ! command -v ruby >/dev/null; then
	eval "`curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install-ruby`"
fi
exec ruby -e "`curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install`" "$@"