We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98f1ae2 commit 26a9c8bCopy full SHA for 26a9c8b
storybook/storybook.go
@@ -109,7 +109,7 @@ func (sh *Storybook) Build(ctx context.Context) (err error) {
109
if err != nil {
110
return
111
}
112
- if ctx.Err() != nil {
+ if err = ctx.Err(); err != nil {
113
114
115
@@ -119,7 +119,7 @@ func (sh *Storybook) Build(ctx context.Context) (err error) {
119
120
121
122
123
124
125
@@ -133,7 +133,7 @@ func (sh *Storybook) Build(ctx context.Context) (err error) {
133
} else {
134
sh.Log.Info("Storybook is up-to-date, skipping build step.")
135
136
137
138
139
0 commit comments