You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when extracting a tar archive in File store, we do not handle the case where a symbolic link contained in the archive already exists in the file system. When such a case happens, a LinkError is thrown by the os.Symlink(target, path) function call on line 190.
Original issue in ORAS CLI repo: oras-project/oras#1593
Currently, when extracting a tar archive in File store, we do not handle the case where a symbolic link contained in the archive already exists in the file system. When such a case happens, a LinkError is thrown by the
os.Symlink(target, path)
function call on line 190.oras-go/content/file/utils.go
Lines 187 to 191 in e4dc64e
Since we automatically overwrite other files by default, we should keep it consistent for symbolic links as well.
The text was updated successfully, but these errors were encountered: