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