Three pre-existing go vet errors introduced by staging-branch divergence from main:
1. internal/bundle/importer_test.go:80 — undefined 'files' variable.
TestBuildBundleConfigFiles_Skills creates b := &Bundle{...} but never
calls buildBundleConfigFiles(b), leaving 'files' undefined. Added
files := buildBundleConfigFiles(b).
2. internal/provisioner/localbuild_test.go — unknown field preflightLocalBuild.
Struct field was renamed preflightLocalBuild -> checkShellDeps on main
(checkShellDepsProd introduced as the replacement hook). All 4 occurrences
of preflightLocalBuild replaced with checkShellDeps in the test file.
3. internal/handlers/org_external.go:349 — append with no values.
cloneAndConfig := append(gitArgs(...)) is a pointless wrapper; main has
cloneAndConfig := gitArgs(...) directly. Removed the append().
Fixes issue #820.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
|
||
|---|---|---|
| .. | ||
| exporter_test.go | ||
| exporter.go | ||
| importer_test.go | ||
| importer.go | ||
| types.go | ||