Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit dc7feca

Browse files
committed
Fixing build break and adding scan to sync
1 parent 51ae9f6 commit dc7feca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cli/sync.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ func Sync(slug string, force bool) error {
3434
return err
3535
}
3636

37-
if err := Reduce(slug); err != nil {
37+
if err := Reduce(false, slug); err != nil {
38+
return err
39+
}
40+
41+
if err := Scan(false, slug); err != nil {
3842
return err
3943
}
4044

0 commit comments

Comments
 (0)