Skip to content

Commit da1adb8

Browse files
committed
v0.1.1 misc fixes
1 parent a4aecb2 commit da1adb8

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

cli.go

+12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"fmt"
77
"net/url"
88
"os"
9+
"os/exec"
910
"runtime"
1011
"strings"
1112
"time"
@@ -17,6 +18,7 @@ import (
1718

1819
"github.com/anchordotdev/cli/models"
1920
"github.com/anchordotdev/cli/stacktrace"
21+
"github.com/anchordotdev/cli/truststore"
2022
"github.com/anchordotdev/cli/ui"
2123
)
2224

@@ -172,6 +174,16 @@ func isReportable(err error) bool {
172174
return false
173175
}
174176

177+
var terr truststore.Error
178+
if errors.As(err, &terr) {
179+
return false
180+
}
181+
182+
eerr := new(exec.ExitError)
183+
if errors.As(err, &eerr) {
184+
return false
185+
}
186+
175187
switch err {
176188
case context.Canceled:
177189
return false

detection/detection_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ func TestDefaultDetectors(t *testing.T) {
3939
fakeFS := fstest.MapFS{
4040
"Gemfile": &fstest.MapFile{Data: []byte(""), Mode: 0644},
4141
"Gemfile.lock": &fstest.MapFile{Data: []byte(""), Mode: 0644},
42+
"Pipfile": &fstest.MapFile{Data: []byte(""), Mode: 0644},
43+
"Pipfile.lock": &fstest.MapFile{Data: []byte(""), Mode: 0644},
4244
"package.json": &fstest.MapFile{Data: []byte(""), Mode: 0644},
4345
"requirements.txt": &fstest.MapFile{Data: []byte(""), Mode: 0644},
4446
"main.go": &fstest.MapFile{Data: []byte(""), Mode: 0644},

detection/languages.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var (
2828

2929
Python = &FileDetector{
3030
Title: "Python",
31-
Paths: []string{"requirements.txt"},
31+
Paths: []string{"Pipfile", "Pipfile.lock", "requirements.txt"},
3232
FollowUpDetectors: []Detector{Django, Flask},
3333
AnchorCategory: anchorcli.CategoryPython,
3434
}

lcl/bootstrap.go

+1-9
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ var CmdBootstrap = cli.NewCmd[Bootstrap](CmdLcl, "bootstrap", func(cmd *cobra.Co
3232
var loopbackAddrs = []string{"127.0.0.1", "::1"}
3333

3434
type Bootstrap struct {
35-
anc *api.Session
36-
orgSlug, realmSlug string
35+
anc *api.Session
3736

3837
auditInfo *truststore.AuditInfo
3938
}
@@ -168,10 +167,6 @@ func (c Bootstrap) perform(ctx context.Context, drv *ui.Driver) error {
168167
}
169168

170169
func (c Bootstrap) personalOrgAPID(ctx context.Context) (string, error) {
171-
if c.orgSlug != "" {
172-
return c.orgSlug, nil
173-
}
174-
175170
userInfo, err := c.anc.UserInfo(ctx)
176171
if err != nil {
177172
return "", err
@@ -180,9 +175,6 @@ func (c Bootstrap) personalOrgAPID(ctx context.Context) (string, error) {
180175
}
181176

182177
func (c Bootstrap) localhostRealmAPID() (string, error) {
183-
if c.realmSlug != "" {
184-
return c.realmSlug, nil // TODO: is this used?
185-
}
186178
return "localhost", nil
187179
}
188180

lcl/lcl.go

-3
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,6 @@ func (c *Command) systemConfig(ctx context.Context, drv *ui.Driver) error {
148148

149149
cmdBootstrap := &Bootstrap{
150150
anc: c.anc,
151-
orgSlug: orgSlug,
152-
realmSlug: realmSlug,
153-
154151
auditInfo: auditInfo,
155152
}
156153

0 commit comments

Comments
 (0)