Skip to content

Commit

Permalink
Fixed integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie committed Apr 19, 2024
1 parent d429b04 commit aadd418
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/integrationtest/arduino-cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ func NewArduinoCliWithinEnvironment(env *Environment, config *ArduinoCLIConfig)
}

cli.cliEnvVars = map[string]string{
"LANG": "en",
"ARDUINO_DATA_DIR": cli.dataDir.String(),
"ARDUINO_DOWNLOADS_DIR": cli.stagingDir.String(),
"ARDUINO_SKETCHBOOK_DIR": cli.sketchbookDir.String(),
"LANG": "en",
"ARDUINO_DIRECTORIES_DATA": cli.dataDir.String(),
"ARDUINO_DIRECTORIES_DOWNLOADS": cli.stagingDir.String(),
"ARDUINO_DIRECTORIES_USER": cli.sketchbookDir.String(),
"ARDUINO_BUILD_CACHE_COMPILATIONS_BEFORE_PURGE": "0",
}
env.RegisterCleanUpCallback(cli.CleanUp)
Expand Down

0 comments on commit aadd418

Please sign in to comment.