XR packaging for Fedora Atomic
0
fork

Configure Feed

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

stop inverting rebuild in bottling script

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

+2 -2
+2 -2
scripts/bottle.nu
··· 7 7 formula: string 8 8 --token (-t): string # GitLab deploy token 9 9 --verbose (-v) 10 - --rebuild (-r) 10 + --no-rebuild (-r) 11 11 ] { 12 12 cd (mktemp -dt) 13 13 ··· 25 25 $install_args ++= ["--verbose"] 26 26 } 27 27 28 - if not $rebuild { 28 + if $no_rebuild { 29 29 $bottle_args ++= ["--no-rebuild"] 30 30 } 31 31