0
1
Fork 0

Merge pull request 'Fix blank line will upload all files' (#12) from lunny/ignore_blank_file_line into main

Reviewed-on: https://gitea.com/actions/release-action/pulls/12
This commit is contained in:
Lunny Xiao 2023-11-16 07:19:50 +00:00
commit 21a5938ff2
1 changed files with 4 additions and 1 deletions

View File

@ -110,7 +110,10 @@ func getFiles(parentDir, files string) ([]string, error) {
lines := strings.Split(files, "\n")
for _, line := range lines {
line = strings.Trim(line, "'")
line = strings.Trim(line, `"`)
line = strings.TrimSpace(strings.Trim(line, `"`))
if line == "" {
continue
}
if filepath.IsAbs(line) {
return nil, fmt.Errorf("file path %s is absolute", line)
}