Skip to content

Commit 897ed4d

Browse files
authored
Merge pull request #19 from gildas/release/0.15.0
Merge release/0.15.0
2 parents 25a711a + 3a7f45e commit 897ed4d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cmd/repository/exec-git-darwin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func GitClone(context context.Context, workspace, repository, destination, usern
2929
return err
3030
}
3131
shell := strings.TrimSpace(strings.Split(string(out), ": ")[1])
32-
cmd := exec.Command(shell, "-c", fmt.Sprintf("git clone %s %s", repoURL.String(), cloneOptions.Destination))
32+
cmd := exec.Command(shell, "-c", fmt.Sprintf("git clone %s %s", repoURL.String(), destination))
3333
cmd.Stdout = os.Stdout
3434
cmd.Stderr = os.Stderr
3535
log.Infof("Executing command: %s", cmd.String())

cmd/repository/exec-git-linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func GitClone(context context.Context, workspace, repository, destination, usern
3333
return err
3434
}
3535
shell := strings.TrimSpace(strings.Split(string(out), ":")[6])
36-
cmd := exec.Command(shell, "-c", fmt.Sprintf("git clone %s %s", repoURL.String(), cloneOptions.Destination))
36+
cmd := exec.Command(shell, "-c", fmt.Sprintf("git clone %s %s", repoURL.String(), destination))
3737
cmd.Stdout = os.Stdout
3838
cmd.Stderr = os.Stderr
3939
log.Infof("Executing command: %s", cmd.String())

cmd/repository/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func listProcess(cmd *cobra.Command, args []string) (err error) {
6464

6565
if wantFilter {
6666
if listOptions.Role.Value == "all" {
67-
return errors.Errorf("You must specify one role when using the --project flag")
67+
return errors.Errorf("You must specify one role when using filter flags (--project, --project-key, --main-branch, --language, --has-issues, --has-wiki, --is-private, --workspace)")
6868
}
6969
query.Add("role", listOptions.Role.Value)
7070
var filters []string

packaging/chocolatey/tools/VERIFICATION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ in verifying that this package's contents are trustworthy.
55

66
I, Gildas Cherruel, am the author of this package that lives on https://github.com/gildas/bitbucket-cli
77

8-
The Package can ve verified by checking the following:
8+
The Package can be verified by checking the following:
99

1010
1. Go to:
1111
https://github.com/gildas/bitbucket-cli/releases/download/v0.15.0/bitbucket-cli-0.15.0-windows-amd64.7z

0 commit comments

Comments
 (0)