We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c65d119 commit 94e5408Copy full SHA for 94e5408
Sources/CartingCore/Services/ShellScriptsService.swift
@@ -86,8 +86,8 @@ final class ShellScriptsService {
86
while !scanner.isAtEnd {
87
scanner.scanUpTo(" = ", into: &key)
88
scanner.scanString("= ", into: nil)
89
- scanner.scanUpTo(";", into: &value)
90
- scanner.scanString(";", into: nil)
+ scanner.scanUpTo(";\n", into: &value)
+ scanner.scanString(";\n", into: nil)
91
if let key = key as String?, let value = value as String? {
92
body[key] = value
93
}
0 commit comments