aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGiles Cope <[email protected]>2020-01-09 13:35:54 +0000
committerGiles Cope <[email protected]>2020-01-09 13:35:54 +0000
commit6fecdd3ccf1ac8cdc70a8b1942855a136e323c75 (patch)
tree4bafc3ccbc3965cb8ecdff46882eb0a5e15ff57e /.github
parent5d43ce12c38596a9c2bef70ece9d878487432cf3 (diff)
create dir if not there as cp doesn't seem to have an option to create the dest dir automatically.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 2b022a862..8f2a48ece 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -107,7 +107,7 @@ jobs:
107 run: mkdir ./dist 107 run: mkdir ./dist
108 108
109 - name: Copy vscode extension 109 - name: Copy vscode extension
110 run: cp ./editors/code/*.vsix ./dist/code/ 110 run: mkdir ./dist/code && cp ./editors/code/*.vsix ./dist/code/
111 111
112 - name: Copy emacs mode 112 - name: Copy emacs mode
113 run: cp -R ./editors/emacs ./dist/ 113 run: cp -R ./editors/emacs ./dist/