Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update release artifacts #2411

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions etc/bloop-coursier.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"launcherType": "graalvm-native-image",
"prebuilt": "$PREBUILT",
"dependencies": [
"ch.epfl.scala:bloop-cli_2.13:$VERSION"
]
}
"ch.epfl.scala::bloop-cli:$VERSION"
],
"mainClass": "bloop.cli.Bloop"
}
10 changes: 5 additions & 5 deletions etc/fish-completions
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ function _boolean
end

function _reporters
bloop autocomplete --format fish --mode reporters
bloop autocomplete --format fish --mode reporters 2> /dev/null
end

function _protocols
bloop autocomplete --format fish --mode protocols
bloop autocomplete --format fish --mode protocols 2> /dev/null
end

function _testsfqcn
set -l cmd (commandline -poc)
set -e cmd[1]
set -l project $cmd[2]
if test -n "$project"
bloop autocomplete --format fish --mode testsfqcn --project $project
bloop autocomplete --format fish --mode testsfqcn --project $project 2> /dev/null
end
end

function _mainsfqcn
set -l cmd (commandline -poc)
set -e cmd[1]
set -l project $cmd[2]
bloop autocomplete --format fish --mode mainsfqcn --project $project
bloop autocomplete --format fish --mode mainsfqcn --project $project 2> /dev/null
end

function __assert_args_count -a count
Expand Down Expand Up @@ -73,7 +73,7 @@ function __fish_seen_subcommand_from_project_commands
end

function _flags_for_command -a cmd
bloop autocomplete --format fish --mode flags --command $cmd
bloop autocomplete --format fish --mode flags --command $cmd 2> /dev/null
end

function _is_project_command -a cmd
Expand Down
Loading