npbackup/bin/npbackup
2023-04-12 08:52:27 +02:00

16 lines
344 B
Python
Executable file

#! /usr/bin/env python3
# -*- coding: utf-8 -*-
#
# This file is part of npbackup, and is really just a binary shortcut to launch npbackup.main
import os
import sys
sys.path.insert(0, os.path.normpath(os.path.join(os.path.dirname(__file__), "..")))
from npbackup.__main__ import main
del sys.path[0]
if __name__ == "__main__":
main()