-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
terraform init - process exception : No such file or directory #65
Comments
Hard to say what is going wrong here without knowing your environment (is the executable in your path) and whether you check the sandbox settings for MacOS. What you can try:
|
downloadPath -> gave the download path var shell = Shell(throwOnError: true, workingDirectory: downloadPath); outputInitializing the backend... Initializing provider plugins...
Terraform has been successfully initialized! Getting output from executing that above code from Android studio, but facing issue in Xcode or release build shellexception(terraform init, error:processexception: no such file or directory Release.entitlementssandbox settings - already set false com.apple.security.app-sandbox |
(Good if you can use triple ticks to format code and console output) Regarding the exception, maybe terraform is not your path (try which('terraform') or the working directory does not exist (try replacing the comand terraform init by |
Hi Alex, terraform added in downloads folder and able to get the result from terminal. issue with different environment path in android studio, xcode and release build. |
Release app: If the path is fine then it will execute the terraform commands in the flutter mac app. |
You can modify the path used by the shell using something like this below. If needed ask the user for the absolute location. import 'package:process_run/shell.dart';
Future<void> main() async {
// Create a new environment
var env = ShellEnvironment();
// Add absolute path to terraform
env.paths.add('example/my/terraform/path');
// Create shell in environment
var shell = Shell(environment: env);
// Run!
await shell.run('terraform init');
} |
Hi Alex, |
let me close this ticket. |
Hi guys sorry to open this again but I'm trying to understand what's happening here since I have the same problem Why is that in debug or profile modes the commands are found but in release they don't? Shouldn't they work the same? |
The command should indeed work the same in debug and release. The issue is that the environment is different. You can try the following: print(Platform.environment['PATH']); If you try in debug from the IDE (which adds some paths), in release from the command line or from an icon, you'll see that its value is different. If you added some path in .zshrc or .bashrc they are sometimes not picked up depending on how you launch your application. So if a path is not available in release, unless you use an absolute path, the executable might not be found. I show above how to modify the env paths from within the application. |
I try to run system commands on Mac flutter app, when run on android studio it work fine but when I run the project on xcode to debug or build a release app (using flutter build macos) and open, its showing process exception : No such file or directory.
I want to execute terraform script from flutter mac app, its working fine in android studio, always getting error from the xcode or release build. Could you please help and resolve this issue ASAP?
The text was updated successfully, but these errors were encountered: