parent
7d56f860e0
commit
e85e98ee13
2 changed files with 17 additions and 1 deletions
|
@ -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}')
|
|
@ -1 +1,5 @@
|
|||
print('TODO bootstrap')
|
||||
import cd
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
cd.install_commands()
|
||||
|
|
Loading…
Reference in a new issue