We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0008634 commit 2f8d392Copy full SHA for 2f8d392
scripts/ci.bash
@@ -60,6 +60,7 @@ function main() {
60
local vscodeVersion="${VSCODE_VERSION:-}"
61
local ostype="${OSTYPE:-}"
62
local package="${PACKAGE:-}"
63
+ local target="${TARGET:-}"
64
65
if [[ -z "${codeServerVersion}" ]] ; then
66
>&2 echo "Must set VERSION environment variable"; exit 1
@@ -69,7 +70,7 @@ function main() {
69
70
>&2 echo "Must set VSCODE_VERSION environment variable"; exit 1
71
fi
72
- if [[ "${ostype}" == "darwin"* ]] && [[ "${ostype}" == "linux" ]]; then
73
+ if [[ "${ostype}" == "darwin"* ]] && [[ "${target}" == "linux" ]]; then
74
local-build
75
else
76
docker-build
0 commit comments