Skip to content

Commit

Permalink
fix: fixed the extension error on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmaaa committed Nov 3, 2023
1 parent 838d417 commit e50b20b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class WriteFlashDialog extends TitleAreaDialog
private static final String ATTR_SERIAL_PORT = "com.espressif.idf.launch.serial.core.serialPort"; //$NON-NLS-1$
private static final String DEFAULT_BIN_NAME = "nvs.bin"; //$NON-NLS-1$
private static final String DEFAULT_OFFSET = "0x8000"; //$NON-NLS-1$
private static final String[] EXTENSIONS = new String[] { ".bin" }; //$NON-NLS-1$
private static final String[] EXTENSIONS = new String[] { "*.bin" }; //$NON-NLS-1$
private Combo comPortsCombo;
private Text deviceInformationText;
private String[] ports;
Expand Down

0 comments on commit e50b20b

Please sign in to comment.