Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
  • Loading branch information
crazy-max committed Jan 19, 2025
1 parent 900d043 commit 5b7e44a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/docker/install.ts
Original file line number Diff line number Diff line change
@@ -172,7 +172,7 @@ export class Install {
return;
}
files.forEach(file => {
const fullPath = path.join(folderPath, file);
const fullPath = path.join(dest, file);
fs.stat(fullPath, (err, stats) => {
if (err) {
console.error(`Error getting stats of file: ${err.message}`);
@@ -203,7 +203,7 @@ export class Install {
return;
}
files.forEach(file => {
const fullPath = path.join(folderPath, file);
const fullPath = path.join(dest, file);
fs.stat(fullPath, (err, stats) => {
if (err) {
console.error(`Error getting stats of file: ${err.message}`);

0 comments on commit 5b7e44a

Please sign in to comment.