Skip to content

Commit 9824981

Browse files
committed
ignore mkdir in windows ci
1 parent 8a49348 commit 9824981

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_win_mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Install ARM GCC
4545
uses: carlosperate/arm-none-eabi-gcc-action@v1
4646
with:
47-
release: '10.3-2021.10'
47+
release: '11.2-2022.02'
4848

4949
- name: Checkout TinyUSB
5050
uses: actions/checkout@v3

examples/rules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ OBJ_DIRS = $(sort $(dir $(OBJ)))
112112
$(OBJ): | $(OBJ_DIRS)
113113
$(OBJ_DIRS):
114114
ifeq ($(CMDEXE),1)
115-
@$(MKDIR) $(subst /,\,$@)
115+
-@$(MKDIR) $(subst /,\,$@)
116116
else
117117
@$(MKDIR) -p $@
118118
endif

0 commit comments

Comments
 (0)