Fix for segfault

This commit is contained in:
Jef Roosens 2022-02-19 21:41:26 +01:00
parent 6c435c2a1e
commit 57c4af0aaf
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
4 changed files with 39 additions and 38 deletions

View file

@ -3,5 +3,5 @@ module main
import docker
fn build() {
println(docker.containers() or { panic("yeet") })
println(docker.containers() or { panic('yeet') })
}