We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02efba5 commit b79b353Copy full SHA for b79b353
scripts/setup_matlab.py
@@ -128,15 +128,15 @@ def download_and_install_matlab_runtime():
128
installer_file = os.listdir(installer_path)[0]
129
130
if system == "windows":
131
- command = ['setup -agreeToLicense yes']
+ commands = ['setup -agreeToLicense yes']
132
elif system == "darwin":
133
commands = [
134
f'open ./{installer_file} --args -agreeToLicense yes',
135
f'open ./{installer_file}'
136
]
137
138
elif system == "linux":
139
- command = [f'sudo ./{installer_file} -agreeToLicense yes']
+ commands = [f'sudo ./{installer_file} -agreeToLicense yes']
140
141
success = False
142
for command in commands:
0 commit comments