Skip to content

Commit fe27765

Browse files
DilumAluthgetopolarity
authored andcommitted
$$
1 parent 5692ee2 commit fe27765

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pipelines/main/misc/juliasyntax.test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,16 +186,17 @@ steps:
186186
187187
echo "--- Pkg.dev-ing (by path) the local copy of JuliaSyntax"
188188
export JULIA_PKG_PRECOMPILE_AUTO=0
189-
echo "Old JULIA_DEPOT_PATH: ${JULIA_DEPOT_PATH:?}"
189+
# Double dollar signs $$ needed here because of Buildkite stuff
190+
echo "Old JULIA_DEPOT_PATH: $${JULIA_DEPOT_PATH:?}"
190191
# On Windows, the separator is ;
191192
# On other platforms, the separator is :
192-
sep=$(julia -e 'println(Sys.iswindows() ? ";" : ":")')
193+
sep=$$(julia -e 'println(Sys.iswindows() ? ";" : ":")')
193194
# We change the depot path from `depot` to `depot:`
194195
# The trailing colon/semicolon makes sure we can re-use the existing stdlib pkgimages,
195196
# instead of needing to re-precompile them
196197
# https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_DEPOT_PATH
197-
export JULIA_DEPOT_PATH="${JULIA_DEPOT_PATH:?}$(sep)"
198-
echo "New JULIA_DEPOT_PATH: ${JULIA_DEPOT_PATH:?}"
198+
export JULIA_DEPOT_PATH="$${JULIA_DEPOT_PATH:?}$$(sep)"
199+
echo "New JULIA_DEPOT_PATH: $${JULIA_DEPOT_PATH:?}"
199200
julia -e 'import Pkg; pspec = Pkg.PackageSpec(path = "./JuliaSyntax"); Pkg.develop(pspec)'
200201
201202
echo "--- Testing JuliaSyntax on Julia {{matrix.julia_version}}"

0 commit comments

Comments
 (0)