I'm trying to run a shell script that I build in the middle of the integration test that I build in flutter.
I tried to use Process.run and also process_run.
I believe that I write it wrong..
await Process.run('./integration_test/test_scripts/put_machine_info.sh', [''], );
Can someone show an example of running shell commands in flutter of a file??
Thanks