From c407350d7ac612720adf34ee011cb952e93b8b64 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Thu, 3 Oct 2019 11:00:41 -0400 Subject: [PATCH] Add ci check for dist directory after install --- .ci/azure-pipelines.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 483d367b6..e6889afb1 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -28,6 +28,10 @@ jobs: yarn install displayName: 'Install dependencies' + - script: | + test -d dist + displayName: 'Check dist directory' + - script: | yarn pack --filename jellyfin-web.tgz displayName: 'Build package'