Skip to content

Commit

Permalink
fix: fix repository ends with /
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 27, 2023
1 parent 0b95368 commit 0d33de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unit-cli/src/main/kotlin/cc/unitmesh/runner/Picker.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class PickerCommand : CliktCommand() {
async {
logger.info("Start to process ${code.repository}")
val insPickerOption = InsPickerOption(
url = code.repository,
url = code.repository.trimEnd('/'),
branch = code.branch,
language = code.language,
maxCompletionEachFile = maxCompletionEachFile,
Expand Down

0 comments on commit 0d33de6

Please sign in to comment.