Skip to content

Commit

Permalink
fix: Exit success when adding an already-added plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperupcall committed Jul 18, 2023
1 parent d1a563d commit 47c7679
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/functions/plugins.bash
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ plugin_add_command() {
mkdir -p "$(asdf_data_dir)/plugins"

if [ -d "$plugin_path" ]; then
display_error "Plugin named $plugin_name already added"
exit 2
printf '%s\n' "Plugin named $plugin_name already added"
exit 0
else
asdf_run_hook "pre_asdf_plugin_add" "$plugin_name"
asdf_run_hook "pre_asdf_plugin_add_${plugin_name}"
Expand Down
4 changes: 2 additions & 2 deletions test/plugin_add_command.bats
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ teardown() {
[ "$output" = "dummy" ]
}

@test "plugin_add command with URL specified run twice returns error second time" {
@test "plugin_add command with URL specified twice returns success on second time" {
install_mock_plugin_repo "dummy"

run asdf plugin add "dummy" "${BASE_DIR}/repo-dummy"
run asdf plugin add "dummy" "${BASE_DIR}/repo-dummy"
[ "$status" -eq 2 ]
[ "$status" -eq 0 ]
[ "$output" = "Plugin named dummy already added" ]
}

Expand Down

0 comments on commit 47c7679

Please sign in to comment.