Commit 5ec5e3a0 by willmcgugan

Apparently I do these this stubs for the command line apps

parent f64112a5
#!/usr/bin/env python
from fs.commands.fscat import run
run()
\ No newline at end of file
#!/usr/bin/env python
from fs.commands.fscp import run
run()
\ No newline at end of file
#!/usr/bin/env python
from fs.commands.fsinfo import run
run()
\ No newline at end of file
#!/usr/bin/env python
from fs.commands.fsls import run
run()
\ No newline at end of file
#!/usr/bin/env python
from fs.commands.fsmkdir import run
run()
\ No newline at end of file
#!/usr/bin/env python
from fs.commands.fsmount import run
run()
\ No newline at end of file
......@@ -51,7 +51,7 @@ Mounts a file system on a system path"""
from fs.expose import dokan
mount_path = mount_path[:1].upper()
self.output('unmounting %s:\n' % mount_path, True)
self.output('unmounting %s:...\n' % mount_path, True)
dokan.unmount(mount_path)
return
......@@ -63,7 +63,7 @@ Mounts a file system on a system path"""
return 1
from fs.expose import fuse
self.output('unmounting %s\n' % mount_path, True)
self.output('unmounting %s...\n' % mount_path, True)
fuse.unmount(mount_path)
return
......
#!/usr/bin/env python
from fs.commands.fsmv import run
run()
\ No newline at end of file
#!/usr/bin/env python
from fs.commands.fsrm import run
run()
\ No newline at end of file
#!/usr/bin/env python
from fs.commands.fsserve import run
run()
\ No newline at end of file
#!/usr/bin/env python
from fs.commands.fstree import run
run()
\ No newline at end of file
......@@ -53,7 +53,7 @@ setup(name='fs',
'fs.contrib.davfs',
'fs.contrib.tahoefs',
'fs.commands'],
scripts=['fs/commands/%s.py' % command for command in COMMANDS],
scripts=['fs/commands/%s' % command for command in COMMANDS],
classifiers=classifiers,
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment