mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 12:43:48 +01:00
Fixing directories without NEED
This commit is contained in:
parent
da344f6bcd
commit
2b82ad0d4f
@ -213,6 +213,14 @@ if __name__ == '__main__':
|
|||||||
if arguments['--all']:
|
if arguments['--all']:
|
||||||
l_module = [f for f in os.listdir(QP_SRC)
|
l_module = [f for f in os.listdir(QP_SRC)
|
||||||
if os.path.isdir(os.path.join(QP_SRC, f))]
|
if os.path.isdir(os.path.join(QP_SRC, f))]
|
||||||
|
l_non_module = [f for f in l_module if not is_module(f) ]
|
||||||
|
if l_non_module:
|
||||||
|
print("Ignoring invalid modules:")
|
||||||
|
print(" ".join(l_non_module))
|
||||||
|
|
||||||
|
# Filter out all non-modules
|
||||||
|
l_module = [f for f in l_module if is_module(f) ]
|
||||||
|
|
||||||
# Remove all produced ezfio_config files
|
# Remove all produced ezfio_config files
|
||||||
for filename in os.listdir( os.path.join(QP_EZFIO, "config") ):
|
for filename in os.listdir( os.path.join(QP_EZFIO, "config") ):
|
||||||
os.remove( os.path.join(QP_EZFIO, "config", filename) )
|
os.remove( os.path.join(QP_EZFIO, "config", filename) )
|
||||||
|
Loading…
Reference in New Issue
Block a user