mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-12-02 08:09:36 +00:00
12 lines
182 B
Python
Executable File
12 lines
182 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys, config
|
|
|
|
def main():
|
|
args = sys.argv[1:]
|
|
for name in args:
|
|
config.add(config.FILES[0], name)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|