install_commands
Some checks failed
/ job (push) Failing after 6s

This commit is contained in:
Marc Beninca 2024-04-26 21:58:35 +02:00
parent 7d56f860e0
commit e85e98ee13
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,12 @@
import os
import sys
def install_commands():
print(__file__)
os.link(f'/usr/local/bin/cd-list-environment', __file__)
if __name__ == '__main__':
command, _ = sys.argv
print(f'command: {command}')

View file

@ -1 +1,5 @@
print('TODO bootstrap') import cd
if __name__ == '__main__':
cd.install_commands()