mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-10 12:33:48 -05:00
Shebang -e flag
This commit is contained in:
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
command="$1"
|
command="$1"
|
||||||
if [ -z "$command" ]; then
|
if [ -z "$command" ]; then
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
RBENV_COMMAND="$1"
|
RBENV_COMMAND="$1"
|
||||||
if [ -z "$RBENV_COMMAND" ]; then
|
if [ -z "$RBENV_COMMAND" ]; then
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
if [ -n "$1" ]; then
|
if [ -n "$1" ]; then
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
mkdir -p "${HOME}/.rbenv/shims"
|
mkdir -p "${HOME}/.rbenv/shims"
|
||||||
cd "${HOME}/.rbenv/shims"
|
cd "${HOME}/.rbenv/shims"
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
if [ -z "$RBENV_VERSION" ]; then
|
if [ -z "$RBENV_VERSION" ]; then
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
RBENV_VERSION="$1"
|
RBENV_VERSION="$1"
|
||||||
if [ -z "$RBENV_VERSION" ]; then
|
if [ -z "$RBENV_VERSION" ]; then
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
exec rbenv-exec "${0##*/}" "$@"
|
exec rbenv-exec "${0##*/}" "$@"
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
read_version_file() {
|
read_version_file() {
|
||||||
egrep -m 1 '[^[:space:]]' "$1"
|
egrep -m 1 '[^[:space:]]' "$1"
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
RBENV_VERSION="$(rbenv-version)"
|
RBENV_VERSION="$(rbenv-version)"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash -e
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
RBENV_VERSION="$(rbenv-version)"
|
RBENV_VERSION="$(rbenv-version)"
|
||||||
RBENV_COMMAND="$1"
|
RBENV_COMMAND="$1"
|
||||||
|
|||||||
Reference in New Issue
Block a user