Skip to content

Commit c88b24c

Browse files
committed
Take the abspath() after the envexpand()
1 parent 654e51e commit c88b24c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/generate_sandboxed_bash.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ add_env_dir!(workspace_mappings, "TMPDIR"; default="/tmp")
5656
for (sandbox_path, host_path) in workspaces
5757
# Also perform ENV-expansion. Note that to make parsing easier, we
5858
# only support `${FOO}` style expansion, not `$FOO` style.
59-
workspace_mappings[envexpand(sandbox_path)] = envexpand(abspath(host_path))
59+
workspace_mappings[envexpand(sandbox_path)] = abspath(envexpand(host_path))
6060
end
6161

6262

0 commit comments

Comments
 (0)