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