taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

generic (255B)


      1 #!/usr/bin/env python3
      2 
      3 # This file is in the public domain.
      4 
      5 import sys
      6 from pathlib import Path
      7 
      8 sys.path.insert(0, str(Path(__file__).resolve().parent))
      9 
     10 from buildlib import main, remove_stale_packages
     11 
     12 
     13 if __name__ == "__main__":
     14     main("generic")