4 lines
116 B
Python
4 lines
116 B
Python
|
#!/usr/bin/python
|
||
|
import os
|
||
|
cmd = "flutter pub run build_runner build --delete-conflicting-outputs";
|
||
|
os.system(cmd);
|