Fix :copy arg handling

This commit is contained in:
Drew DeVault 2019-06-09 19:14:04 -04:00
parent c55223106d
commit 57471a0e67
1 changed files with 3 additions and 3 deletions

View File

@ -17,11 +17,11 @@ func init() {
}
func Copy(aerc *widgets.Aerc, args []string) error {
opts, optind, err := getopt.Getopts(args[1:], "p")
opts, optind, err := getopt.Getopts(args, "p")
if err != nil {
return err
}
if optind != len(args)-2 {
if optind != len(args)-1 {
return errors.New("Usage: cp [-p] <folder>")
}
var (
@ -37,7 +37,7 @@ func Copy(aerc *widgets.Aerc, args []string) error {
widget := aerc.SelectedTab().(widgets.ProvidesMessage)
msg := widget.SelectedMessage()
store := widget.Store()
store.Copy([]uint32{msg.Uid}, args[optind+1], createParents, func(
store.Copy([]uint32{msg.Uid}, args[optind], createParents, func(
msg types.WorkerMessage) {
switch msg := msg.(type) {