Skip to content

Commit

Permalink
Update describe to only add symlink for files without parts (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinlocke authored Apr 8, 2024
1 parent 8abe0da commit 9f82003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dx_describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func submit(
// If this is a symlink, create structure with
// all the relevant information.
var symlink *DXSymlink = nil
if descRaw.Drive != nil {
if descRaw.Parts == nil && descRaw.Drive != nil {
symlink = &DXSymlink{
MD5: *descRaw.MD5,
Drive: *descRaw.Drive,
Expand Down

0 comments on commit 9f82003

Please sign in to comment.