4 lines
109 B
Python
Executable File
4 lines
109 B
Python
Executable File
#!/usr/bin/python
|
|
import os
|
|
cmd = "flutter pub get && flutter pub run icons_launcher:create";
|
|
os.system(cmd); |