Skip to content

Commit 85af3d5

Browse files
kaworuaanm
authored andcommitted
make: fix clean target
Before this patch when running `make clean` we get: make: *** No rule to make target 'rm', needed by 'clean'. Stop. Signed-off-by: Alexandre Perrin <[email protected]>
1 parent ac50959 commit 85af3d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ github-actions:
1414
local: github-actions
1515
strip github-actions
1616

17-
clean: rm -fr github-actions
17+
clean:
18+
rm -fr github-actions

0 commit comments

Comments
 (0)