ci: Update standalone build test

ms-toolsai.jupyter is now a dependency of ms-python and is installed
along with it.
This commit is contained in:
Anmol Sethi 2020-11-16 13:09:57 -05:00
parent 9917da068a
commit f64599b94d
No known key found for this signature in database
GPG Key ID: 8CEF1878FF10ADEB

View File

@ -15,7 +15,8 @@ main() {
./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --install-extension ms-python.python
local installed_extensions
installed_extensions="$(./release-standalone/bin/code-server --extensions-dir "$EXTENSIONS_DIR" --list-extensions 2>&1)"
if [[ $installed_extensions != "ms-python.python" ]]; then
# We use grep as ms-python.python may have dependency extensions that change.
if ! echo "$installed_extensions" | grep -q "ms-python.python"; then
echo "Unexpected output from listing extensions:"
echo "$installed_extensions"
exit 1