mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
use "./vendor/bundle/bin" instead of "./.bin" for Ruby Bundler binstubs
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
BUNDLE_PATH: vendor/bundle
|
BUNDLE_PATH: vendor/bundle
|
||||||
BUNDLE_BIN: .bin
|
BUNDLE_BIN: vendor/bundle/bin
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ path_prepend "$DOTBIN"
|
|||||||
|
|
||||||
# Relative Paths - must be first in PATH
|
# Relative Paths - must be first in PATH
|
||||||
path_prepend "./node_modules/.bin" # Node.js
|
path_prepend "./node_modules/.bin" # Node.js
|
||||||
path_prepend "./.bin" # Ruby Bundler
|
path_prepend "./vendor/bundle/bin" # Ruby Bundler
|
||||||
|
|
||||||
# Ensure TMPDIR is the same for local and remote ssh logins
|
# Ensure TMPDIR is the same for local and remote ssh logins
|
||||||
if [[ $TMPDIR == "/var/folders/"* ]] || [[ $TMPDIR == "" ]]; then
|
if [[ $TMPDIR == "/var/folders/"* ]] || [[ $TMPDIR == "" ]]; then
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ alias po="powify"
|
|||||||
alias lu="lunchy"
|
alias lu="lunchy"
|
||||||
|
|
||||||
# Bundler aliases
|
# Bundler aliases
|
||||||
alias bi="bundle install --path vendor/bundle --binstubs=.bin"
|
alias bi="bundle install --path vendor/bundle --binstubs=vendor/bundle/bin"
|
||||||
alias bc="bundle check"
|
alias bc="bundle check"
|
||||||
alias bl="bundle list"
|
alias bl="bundle list"
|
||||||
alias be="bundle exec"
|
alias be="bundle exec"
|
||||||
|
|||||||
Reference in New Issue
Block a user