-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
successive linux builds fail to instantiate toolchain #303
Comments
I think this is a “symlinking across to a docker volume” issue |
could well be; any good reason not to sanitize the toolchain directory? |
actually, it's probably just this: $ touch a
$ deno
Deno 1.40.1
exit using ctrl+d, ctrl+c, or close()
REPL is running with all permissions allowed.
To specify permissions, run `deno repl` with allow flags.
> Deno.symlinkSync("a", "b")
undefined
>
$
ls -l
total 0
-rw-r--r-- 1 jacob staff 0 Feb 2 13:10 a
lrwxr-xr-x 1 jacob staff 1 Feb 2 13:10 b -> a
$ deno
Deno 1.40.1
exit using ctrl+d, ctrl+c, or close()
REPL is running with all permissions allowed.
To specify permissions, run `deno repl` with allow flags.
> Deno.symlinkSync("a", "b")
Uncaught AlreadyExists: File exists (os error 17): symlink 'a' -> 'b'
at Object.symlinkSync (ext:deno_fs/30_fs.js:545:3)
at <anonymous>:1:27
> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
at least in our docker image; possibly elsewhere:
currently,
rm -rf homes/yarnpkg.com=3.8.0 && bk b yarnpkg.com=3.8
works as a workaround.The text was updated successfully, but these errors were encountered: