Commit 0f4e84de authored by Kejie Zhang's avatar Kejie Zhang

use fileinfo.abs to judge the file stdin

License: MIT
Signed-off-by: default avatarKejie Zhang <601172892@qq.com>
parent b61dae36
......@@ -472,7 +472,8 @@ func (adder *Adder) addFile(file files.File) error {
}
addFileName := file.FileName()
if (file.FullPath() == "/dev/stdin" || file.FullPath() == "") && adder.Name != "" {
addFileInfo := file.(files.FileInfo)
if addFileInfo.AbsPath() == os.Stdin.Name() && adder.Name != "" {
addFileName = adder.Name
adder.Name = ""
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment