File: rosdistro_build_cache

package info (click to toggle)
ros-rosdistro 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 724 kB
  • sloc: python: 4,125; makefile: 38; xml: 22
file content (11 lines) | stat: -rwxr-xr-x 303 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3

import sys

from rosdistro.cli.rosdistro_build_cache import main

if __name__ == '__main__':
    print('The rosdistro_build_cache script is deprecated. Use python3 '
          "-m 'rosdistro.cli.rosdistro_build_cache' instead.\n",
          file=sys.stderr)
    sys.exit(main())