File: set-dev-version

package info (click to toggle)
trash-cli 0.24.5.26-0.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,972 kB
  • sloc: python: 9,789; sh: 121; makefile: 11
file content (11 lines) | stat: -rwxr-xr-x 242 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python

if __name__ == '__main__':
    import os
    import sys

    root = os.path.realpath(os.path.join(__file__, "..", ".."))
    sys.path.insert(0, root)
    from tests.support.tools.set_dev_version import main

    main()