XR packaging for Fedora Atomic
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add --no-rm for containerized bottle script

Signed-off-by: @matrixfurry.com <did:plc:zmjoeu3stwcn44647rhxa44o>

+4 -1
+4 -1
scripts/containerized-bottle.nu
··· 6 6 7 7 def main --wrapped [ 8 8 formula: string 9 + --no-rm (-r) # Don't remove the container after building 9 10 ...args 10 11 ] { 11 - podman run --rm -it -v $"($tap_dir):/homebrew-tap:ro,z" -w "/homebrew-tap" -e $"DEPLOY_TOKEN=($env.DEPLOY_TOKEN?)" fedora:42 scripts/ci/bottle.sh $formula ...$args 12 + podman run ...( 13 + if not $no_rm {["--rm"]} 14 + ) -it -v $"($tap_dir):/homebrew-tap:ro,z" -w "/homebrew-tap" -e $"DEPLOY_TOKEN=($env.DEPLOY_TOKEN?)" fedora:42 scripts/ci/bottle.sh $formula ...$args 12 15 }