mirror of
https://github.com/wahyd4/gvm.git
synced 2026-08-09 04:46:19 +10:00
FreeBSD does not by default install the Bourne-Again Shell (bash); and when it is installed, it is most certainly not installed to ``/bin/bash`` due to the nuances of the conventions around local site packages. Rather, it is installed to ``/usr/local/bin/bash``. Golang explicitly supports FreeBSD, so it should only be reasonable for GVM to support this target, too. As a fix, the shell script shebang definitions now use the ``env`` tool that comes from the _coreutils_ standard package, which is installed on all conventions-adhering Linux distributions, Mac OS X, and FreeBSD. FreeBSD prerequisites are now listed in the documentation. I have tested this against FreeBSD 9.0 release branch on the amd64, and it works satisfactorily now.
23 lines
699 B
Bash
23 lines
699 B
Bash
#!/usr/bin/env bash
|
|
function gvm_pkgset_use() {
|
|
[[ "$1" != "" ]] ||
|
|
display_error "Please specify a package set" || return 1
|
|
|
|
[[ "$gvm_go_name" != "" ]] ||
|
|
display_error "No Go version selected" || return 1
|
|
|
|
fuzzy_match=`$LS_PATH $GVM_ROOT/environments | $SORT_PATH | $GREP_PATH "$gvm_go_name@" | $GREP_PATH "$1" | $HEAD_PATH -n 1` ||
|
|
display_error "Invalid package set" || return 1
|
|
|
|
export PATH=$GVM_PATH_BACKUP
|
|
. "$GVM_ROOT/environments/$fuzzy_match" ||
|
|
display_error "Failed to source the package set environment" || return 1
|
|
|
|
if [[ "$2" == "--default" ]]; then
|
|
cp $GVM_ROOT/environments/$fuzzy_match $GVM_ROOT/environments/default
|
|
fi
|
|
|
|
echo "Now using version $fuzzy_match"
|
|
}
|
|
|