From 88119c2893bc78bc379c0ca59c1b21d5063f4567 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Tue, 20 Sep 2022 14:27:34 -0700 Subject: [PATCH] fixup!: always build test plugin --- ci/dev/test-integration.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/ci/dev/test-integration.sh b/ci/dev/test-integration.sh index 29051c72f..fa2adb59a 100755 --- a/ci/dev/test-integration.sh +++ b/ci/dev/test-integration.sh @@ -24,12 +24,10 @@ main() { path="$CODE_SERVER_PATH" fi - if [[ ! -f "test/integration/test-plugin/out/index.js" ]]; then - echo "Building test plugin" - pushd test/integration/test-plugin - make -s out/index.js - popd - fi + echo "Building test plugin" + pushd test/integration/test-plugin + make -s out/index.js + popd echo "Running tests with code-server binary: '$path'"