File: npm2deb.py

package info (click to toggle)
npm2deb 0.3.0-14
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 532 kB
  • sloc: python: 1,712; sh: 13; makefile: 2
file content (10 lines) | stat: -rwxr-xr-x 148 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python3

import sys
from npm2deb.scripts import main

try:
    sys.exit(main(sys.argv))
except KeyboardInterrupt:
    print("")
    pass