-
Hello everyone, when I use sqlx prepare, it results in an error: 'Error: failed to open the temporary file'. However, cargo check completes successfully. Environment details: Ubuntu 20.04.3 LTS
|
Beta Was this translation helpful? Give feedback.
Answered by
abonander
Nov 28, 2023
Replies: 1 comment 5 replies
-
What filesystem is your project directory on? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like overlayfs doesn't support
O_TMPFILE
which is used by theatomic-write-file
crate added in #2803That was part of the 0.7.3 release so you should be able to downgrade to 0.7.2, but you probably need to specify the exact version:
This is definitely something we'll want to fix as building in Docker is an important use case.