mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
27f7ef7852
* fix: don't invoke asdf inside asdf commands Recursive calls have a number of disadvantages: * Poorer performance since each invocation spawns and new process and re-executes all the code in bin/asdf * Makes debugging more difficult * More likely to introduce subtle bugs and the possibility for infinite loops
7 lines
124 B
Bash
7 lines
124 B
Bash
# -*- sh -*-
|
|
|
|
# shellcheck source=lib/commands/reshim.bash
|
|
. "$(dirname "$ASDF_CMD_FILE")/reshim.bash"
|
|
|
|
reshim_command "$@"
|