mirror of
https://github.com/restic/restic.git
synced 2024-12-24 08:44:52 +00:00
parent
4a51ddf741
commit
31ff506309
1 changed files with 5 additions and 1 deletions
|
@ -304,7 +304,11 @@ func readLinesFromFile(filename string) ([]string, error) {
|
|||
|
||||
scanner := bufio.NewScanner(r)
|
||||
for scanner.Scan() {
|
||||
lines = append(lines, scanner.Text())
|
||||
line := scanner.Text()
|
||||
if line == "" {
|
||||
continue
|
||||
}
|
||||
lines = append(lines, line)
|
||||
}
|
||||
|
||||
if err := scanner.Err(); err != nil {
|
||||
|
|
Loading…
Reference in a new issue