Skip to content

Commit b02b096

Browse files
committed
use correct os getfile when on saturn
1 parent 197f3a1 commit b02b096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

saturn/pkg/run/gcs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func NewGCSClient(ctx context.Context, onSaturn bool) (*GCSClient, error) {
2424
if err != nil {
2525
return nil, fmt.Errorf("storage.NewClient: %v", err)
2626
}
27-
return &GCSClient{client, false}, nil
27+
return &GCSClient{client, onSaturn}, nil
2828
}
2929

3030
func (c *GCSClient) GetFile(ctx context.Context, f FileSpecification, w io.Writer) error {

0 commit comments

Comments
 (0)