mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
The recipe for the 'app_flash' target uses an 'until' loop to wait for the DFU device to be connected. The command uses &> to redirect both standard output and standard error output to a file (/dev/null). This works for shells such as Bash and Z Shell, but not dash or Korn shell. Replace it with a combination of > and 2>&1 for portability.