mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Merge branch 'master' into libexec
Conflicts: bin/rbenv libexec/rbenv-shim
This commit is contained in:
commit
d65141c7b5
10 changed files with 15 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
abs_dirname() {
|
abs_dirname() {
|
||||||
orig_dir=`pwd`
|
orig_dir=`pwd`
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
RBENV_COMMAND="$1"
|
RBENV_COMMAND="$1"
|
||||||
if [ -z "$RBENV_COMMAND" ]; then
|
if [ -z "$RBENV_COMMAND" ]; then
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
if [ -n "$1" ]; then
|
if [ -n "$1" ]; then
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
|
|
9
libexec/rbenv-rehash
Executable file → Normal file
9
libexec/rbenv-rehash
Executable file → Normal file
|
@ -1,9 +1,14 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
mkdir -p "${HOME}/.rbenv/shims"
|
mkdir -p "${HOME}/.rbenv/shims"
|
||||||
cd "${HOME}/.rbenv/shims"
|
cd "${HOME}/.rbenv/shims"
|
||||||
rm -f *
|
rm -f *
|
||||||
|
|
||||||
for file in ../versions/*/bin/*; do
|
for file in ../versions/*/bin/*; do
|
||||||
ln -fs ../bin/rbenv-shim "${file##*/}"
|
shim="${file##*/}"
|
||||||
|
cat > "$shim" <<SH
|
||||||
|
#!/bin/sh
|
||||||
|
exec rbenv exec $shim "\$@"
|
||||||
|
SH
|
||||||
|
chmod +x "$shim"
|
||||||
done
|
done
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
if [ -z "$RBENV_VERSION" ]; then
|
if [ -z "$RBENV_VERSION" ]; then
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
if [ -z "$RBENV_VERSION" ]; then
|
if [ -z "$RBENV_VERSION" ]; then
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/bash -e
|
|
||||||
|
|
||||||
exec rbenv-exec "${0##*/}" "$@"
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
read_version_file() {
|
read_version_file() {
|
||||||
egrep -m 1 '[^[:space:]]' "$1"
|
egrep -m 1 '[^[:space:]]' "$1"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
RBENV_VERSION="$(rbenv-version)"
|
RBENV_VERSION="$(rbenv-version)"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash -e
|
#!/usr/bin/env bash -e
|
||||||
|
|
||||||
RBENV_VERSION="$(rbenv-version)"
|
RBENV_VERSION="$(rbenv-version)"
|
||||||
RBENV_COMMAND="$1"
|
RBENV_COMMAND="$1"
|
||||||
|
|
Loading…
Reference in a new issue