mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Merge pull request #26 from ndreas/master
/usr/bin/env bash -e does not work on some platforms
This commit is contained in:
commit
83ced494fa
15 changed files with 32 additions and 16 deletions
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
abs_dirname() {
|
abs_dirname() {
|
||||||
local cwd="$(pwd)"
|
local cwd="$(pwd)"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
shopt -s nullglob
|
shopt -s nullglob
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
RBENV_COMMAND="$1"
|
RBENV_COMMAND="$1"
|
||||||
if [ -z "$RBENV_COMMAND" ]; then
|
if [ -z "$RBENV_COMMAND" ]; then
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
print_set_version() {
|
print_set_version() {
|
||||||
echo "<version> should be a string matching a Ruby version known by rbenv."
|
echo "<version> should be a string matching a Ruby version known by rbenv."
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
print=""
|
print=""
|
||||||
if [ "$1" = "-" ]; then
|
if [ "$1" = "-" ]; then
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
if [ -n "$1" ]; then
|
if [ -n "$1" ]; then
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
create_prototype_shim() {
|
create_prototype_shim() {
|
||||||
cat > .rbenv-shim <<SH
|
cat > .rbenv-shim <<SH
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
exec rbenv exec "\${0##*/}" "\$@"
|
exec rbenv exec "\${0##*/}" "\$@"
|
||||||
SH
|
SH
|
||||||
chmod +x .rbenv-shim
|
chmod +x .rbenv-shim
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
if [ -z "$RBENV_VERSION" ]; then
|
if [ -z "$RBENV_VERSION" ]; then
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
if [ -z "$RBENV_VERSION" ]; then
|
if [ -z "$RBENV_VERSION" ]; then
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
echo "$(rbenv-version-name) (set by $(rbenv-version-origin))"
|
echo "$(rbenv-version-name) (set by $(rbenv-version-origin))"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
read_version_file() {
|
read_version_file() {
|
||||||
egrep -m 1 '[^[:space:]]' "$1"
|
egrep -m 1 '[^[:space:]]' "$1"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
find_version_file() {
|
find_version_file() {
|
||||||
local root="$(pwd)"
|
local root="$(pwd)"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
RBENV_VERSION_NAME="$(rbenv-version-name)"
|
RBENV_VERSION_NAME="$(rbenv-version-name)"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
if [ "$1" = "--path" ]; then
|
if [ "$1" = "--path" ]; then
|
||||||
print_paths="1"
|
print_paths="1"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash -e
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
expand_path() {
|
expand_path() {
|
||||||
local cwd="$(pwd)"
|
local cwd="$(pwd)"
|
||||||
|
|
Loading…
Reference in a new issue