Skip to content

Commit

Permalink
give library listing command more time to finish it's job
Browse files Browse the repository at this point in the history
  • Loading branch information
Candle - the privacy friendly smart home committed Mar 1, 2021
1 parent c94136d commit b279208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/candle_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def check_installed_arduino_libraries(self):
#command = self.arduino_cli_path + '/arduino-cli lib list --all --format=json' # perhaps use os.path.join(self.addon_path, 'arduino-cli') + 'lib list --all --format=json' ?
command = os.path.join(self.arduino_cli_path, 'arduino-cli') + ' lib list --all --format=json'
print("check_installed_arduino_libraries command = " + str(command))
command_output = run_command_json(command,10) # Sets a time limit for how long the command can take.
command_output = run_command_json(command,30) # Sets a time limit for how long the command can take.
if self.DEBUG:
print("Installed arduino libs command_output: " + str(command_output))

Expand Down

0 comments on commit b279208

Please sign in to comment.