feat: use version as well
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-04-06 22:42:35 +02:00
parent a38906466e
commit c4e3e5781c
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -44,7 +44,9 @@ impl DaggerMiddleware for DaggerBin {
.with_exec(vec!["/mnt/install.sh"])
.file("/bin/dagger");
Ok(container.with_file("/bin/dagger", dagger_bin))
Ok(container
.with_file("/bin/dagger", dagger_bin)
.with_exec(vec!["/bin/dagger", "version"]))
}
}