Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cmd/copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,10 @@ func (raw *rawCopyCmdArgs) toCopyOptions(cmd *cobra.Command) (opts azcopy.CopyOp
return opts, err
}

if err = opts.PosixPropertiesStyle.Parse(raw.posixPropertiesStyle); err != nil {
return opts, err
}

err = opts.BlobType.Parse(raw.blobType)
if err != nil {
return opts, err
Expand Down
1 change: 1 addition & 0 deletions ste/JobPartPlanFileName.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ func (jpfn JobPartPlanFileName) Create(order common.CopyJobPartOrderRequest) {
PreservePermissions: order.PreservePermissions,
PreserveInfo: order.PreserveInfo,
PreservePOSIXProperties: order.PreservePOSIXProperties,
PosixPropertiesStyle: order.PosixPropertiesStyle,
// For S2S copy, per JobPartPlan info
S2SGetPropertiesInBackend: order.S2SGetPropertiesInBackend,
S2SSourceChangeValidation: order.S2SSourceChangeValidation,
Expand Down
Loading