Skip to content

Commit 6fecdd3

Browse files
committed
create dir if not there as cp doesn't seem to have an option to create the dest dir automatically.
1 parent 5d43ce1 commit 6fecdd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
run: mkdir ./dist
108108

109109
- name: Copy vscode extension
110-
run: cp ./editors/code/*.vsix ./dist/code/
110+
run: mkdir ./dist/code && cp ./editors/code/*.vsix ./dist/code/
111111

112112
- name: Copy emacs mode
113113
run: cp -R ./editors/emacs ./dist/

0 commit comments

Comments
 (0)