diff --git a/zip_project.ps1 b/zip_project.ps1 index 03bbb3b..34e6746 100644 --- a/zip_project.ps1 +++ b/zip_project.ps1 @@ -1,7 +1,7 @@ $sourcePath = Get-Location $destination = Join-Path -Path $sourcePath -ChildPath "fpsms.zip" -$exclude = @(".git", ".next", ".vscode", "node_modules", ".gitignore", "zip_project.ps1", "fpsms.zip") +$exclude = @(".git", ".next", ".vscode", "node_modules", ".gitignore", "zip_project.ps1", "fpsms.zip", ".env.development") $files = Get-ChildItem -Path $sourcePath -Exclude $exclude