XR packaging for Fedora Atomic
0
fork

Configure Feed

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

change short arg for keep container to -k

+1 -2
+1 -2
scripts/containerized-bottle.nu
··· 6 6 7 7 def main --wrapped [ 8 8 formula: string 9 - --keep-container (-r) # Don't remove the container after building 9 + --keep-container (-k) # Don't remove the container after building 10 10 ...args 11 11 ] { 12 12 if (sys host).name == "Darwin" { ··· 18 18 if not $keep_container {["--rm"]} 19 19 ) -it -v $"($tap_dir):/homebrew-tap:ro,z" -w "/homebrew-tap" -e $"DEPLOY_TOKEN=($env.DEPLOY_TOKEN?)" fedora:latest scripts/ci/bottle.sh $formula ...$args 20 20 } 21 - 22 21 }