dev-scripts/make_appimage.py [21:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def run_command(cmd, abort_on_error = True):
    print(cmd)
    success = (os.system(cmd) == 0)
    if abort_on_error and not success:
        sys.exit(1)

    return success
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dev-scripts/make_windows_package.py [23:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def run_command(cmd, abort_on_error = True):
    print(cmd)
    success = (os.system(cmd) == 0)
    if abort_on_error and not success:
        sys.exit(1)

    return success
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



