wip fix
This commit is contained in:
parent
8c324a955f
commit
41be30c2bc
|
|
@ -42,9 +42,9 @@ if (!g.dockerPrepared) {
|
||||||
if (
|
if (
|
||||||
file.startsWith("app/") ||
|
file.startsWith("app/") ||
|
||||||
file.startsWith("pkgs/") ||
|
file.startsWith("pkgs/") ||
|
||||||
["bun.lockb", "package.json"].includes(file)
|
["package.json"].includes(file)
|
||||||
) {
|
) {
|
||||||
if (file.endsWith("package.json")) {
|
if (file.endsWith("package.json") || file.endsWith("bun.lockb")) {
|
||||||
await dirAsync(dir.path("_tmp_docker", path.dirname(file)));
|
await dirAsync(dir.path("_tmp_docker", path.dirname(file)));
|
||||||
await copyAsync(dir.path(file), dir.path("_tmp_docker", file), {
|
await copyAsync(dir.path(file), dir.path("_tmp_docker", file), {
|
||||||
overwrite: true,
|
overwrite: true,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue