clan-config: add bin wrapper
This commit is contained in:
12
pkgs/clan-cli/bin/clan-config
Executable file
12
pkgs/clan-cli/bin/clan-config
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env python3
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.insert(
|
||||
0, os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
|
||||
)
|
||||
|
||||
from clan_cli import config # NOQA
|
||||
|
||||
if __name__ == "__main__":
|
||||
config.main()
|
||||
Reference in New Issue
Block a user