mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 13:18:47 +00:00
create dir if not there as cp doesn't seem to have an option to create the dest dir automatically.
This commit is contained in:
parent
5d43ce12c3
commit
6fecdd3ccf
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
@ -107,7 +107,7 @@ jobs:
|
|||
run: mkdir ./dist
|
||||
|
||||
- name: Copy vscode extension
|
||||
run: cp ./editors/code/*.vsix ./dist/code/
|
||||
run: mkdir ./dist/code && cp ./editors/code/*.vsix ./dist/code/
|
||||
|
||||
- name: Copy emacs mode
|
||||
run: cp -R ./editors/emacs ./dist/
|
||||
|
|
Loading…
Reference in a new issue