From 6fecdd3ccf1ac8cdc70a8b1942855a136e323c75 Mon Sep 17 00:00:00 2001 From: Giles Cope Date: Thu, 9 Jan 2020 13:35:54 +0000 Subject: create dir if not there as cp doesn't seem to have an option to create the dest dir automatically. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: 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/ -- cgit v1.2.3