Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8f346b53fa |
|
|
@ -3,6 +3,7 @@ package wails
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
|
|
||||||
"github.com/google/shlex"
|
"github.com/google/shlex"
|
||||||
"lmika.dev/actions/wails-release/internal/runner"
|
"lmika.dev/actions/wails-release/internal/runner"
|
||||||
|
|
@ -24,6 +25,7 @@ func Build(ctx context.Context, r runner.Runner, opts BuildOpts) error {
|
||||||
}
|
}
|
||||||
args = append(args, extra...)
|
args = append(args, extra...)
|
||||||
}
|
}
|
||||||
|
log.Printf("build: wails %v", args)
|
||||||
if _, err := r.Run(ctx, runner.Spec{Name: "wails", Args: args, Dir: opts.Dir}); err != nil {
|
if _, err := r.Run(ctx, runner.Spec{Name: "wails", Args: args, Dir: opts.Dir}); err != nil {
|
||||||
return fmt.Errorf("wails build: %w", err)
|
return fmt.Errorf("wails build: %w", err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue