Skip to content
Snippets Groups Projects
Select Git revision
  • 4cb64bdfc62e8436743e101bd43083bf655fc01d
  • master default
  • private_plugin
  • snapshot_20210303
  • 0.2.0
  • 0.1.1
6 results

package.py

Blame
  • Moritz Maxeiner's avatar
    calrama authored
    f2dc883a
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    package.py 161 B
    #! /usr/bin/env python3
    
    from subprocess import check_call
    
    if __name__ == "__main__":
        command = ["ninja", "-C", "build", "package"]
        check_call(command)