Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
bwireman committed Dec 30, 2024
1 parent fb1d0b8 commit 1e99bf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
# rebar3-version: ${{ env.rebar }}
# - run: gleam test --target erlang
# - run: gleam run --target erlang -- --outdated

windows:
runs-on: windows-latest
steps:
Expand Down
4 changes: 3 additions & 1 deletion src/go_over/util/util.gleam
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import delay
import gleam/io
import gleam/list
import go_over/util/print
import shellout

pub fn hard_fail(res: Result(a, b), msg: String) -> a {
case res {
Ok(val) -> val
_ -> {
err -> {
io.debug(err)
print.warning("Error: " <> msg)
shellout.exit(1)
panic as "unreachable"
Expand Down

0 comments on commit 1e99bf2

Please sign in to comment.