mirror of
https://github.com/xxh/xxh
synced 2024-11-15 08:37:11 +00:00
8 lines
232 B
Text
8 lines
232 B
Text
import os, glob
|
|
|
|
import_path = os.path.join($XXH_HOME, 'plugins')
|
|
xonshrc_plugins_rc=[]
|
|
for rc in sorted(glob.glob(os.path.join(import_path, '*/xonshrc.xsh'))):
|
|
xonshrc_plugins_rc.append(rc)
|
|
|
|
print(' '.join(xonshrc_plugins_rc))
|