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 e53d6bc commit b9fc404Copy full SHA for b9fc404
scripts/ci.bash
@@ -6,6 +6,7 @@ function docker-build() {
6
local target="${TARGET:-}"
7
local image="codercom/nbin-${target}"
8
local token="${GITHUB_TOKEN:-}"
9
+ local minify="${MINIFY:-}"
10
if [[ "${target}" == "linux" ]] ; then
11
image="codercom/nbin-centos"
12
fi
@@ -27,7 +28,7 @@ function docker-build() {
27
28
local command="${1}" ; shift
29
local args="'${vscodeVersion}' '${codeServerVersion}' '${target}'"
30
docker exec "${containerId}" \
- bash -c "cd /src && CI=true GITHUB_TOKEN=${token} yarn ${command} ${args}"
31
+ bash -c "cd /src && CI=true GITHUB_TOKEN=${token} MINIFY=${minify} yarn ${command} ${args}"
32
}
33
34
docker cp ./. "${containerId}":/src
0 commit comments