Skip to content

Commit 18db32a

Browse files
authored
Merge pull request #96 from roc-lang/fixes-updates
error fix roc-lang/roc#7548, basic-cli link update
2 parents b10860e + 9cc746c commit 18db32a

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

build.roc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
app [main!] {
2-
cli: platform "https://github.com/roc-lang/basic-cli/releases/download/0.19.0/bi5zubJ-_Hva9vxxPq4kNx4WHX6oFs8OP6Ad0tCYlrY.tar.br",
2+
cli: platform "https://github.com/roc-lang/basic-cli/releases/download/0.19.0/Hj-J_zxz7V9YurCSTFcFdu6cQJie4guzsPMUi5kBYUk.tar.br",
33
weaver: "https://github.com/smores56/weaver/releases/download/0.6.0/4GmRnyE7EFjzv6dDpebJoWWwXV285OMt4ntHIc6qvmY.tar.br",
44
}
55

flake.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

platform/MultipartFormData.roc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ parse_content_f = |{ upper, lower }|
6666
List.starts_with(bytes, to_search_upper)
6767
or List.starts_with(bytes, to_search_lower)
6868
then
69-
next_line_start = after_search |> List.find_first_index?(|b| b == '\r')
69+
next_line_start = after_search |> List.find_first_index(|b| b == '\r')?
7070

7171
Ok(
7272
{

platform/Path.roc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ read_utf8! : Path => Result Str [FileReadErr Path IOErr, FileReadUtf8Err Path _]
307307
read_utf8! = |path|
308308
bytes =
309309
Host.file_read_bytes!(InternalPath.to_bytes(path))
310-
|> Result.map_err?(|read_err| FileReadErr(path, InternalIOErr.handle_err(read_err)))
310+
|> Result.map_err(|read_err| FileReadErr(path, InternalIOErr.handle_err(read_err)))?
311311

312312
Str.from_utf8(bytes)
313313
|> Result.map_err(|err| FileReadUtf8Err(path, err))

0 commit comments

Comments
 (0)