diff --git a/server-console/src/main.js b/server-console/src/main.js index d360dbd32c..28a69527a1 100644 --- a/server-console/src/main.js +++ b/server-console/src/main.js @@ -414,7 +414,9 @@ function performContentMigration() { console.log("Copying Stack Manager assets from " + oldAssetsPath + " to " + newAssetsPath); // attempt to copy the assets folder, show correct dialog depending on success/failure - fs.copy(oldAssetsPath, newAssetsPath, showMigrationCompletionDialog); + fs.copy(oldAssetsPath, newAssetsPath, { + preserveTimestamps: true + }, showMigrationCompletionDialog); } else { showMigrationCompletionDialog(null); }