We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14f61f8 commit 3d05925Copy full SHA for 3d05925
2 files changed
scripts/deploy.ps1
@@ -136,6 +136,7 @@ if ($continue -eq "y" -or $continue -eq "Y") {
136
npm run build
137
138
# Copy built files to server directory
139
+ New-Item -ItemType Directory -Force "$ProjectDir\src\app\server\static" | Out-Null
140
Copy-Item -Path "$ProjectDir\src\app\static\*" -Destination "$ProjectDir\src\app\server\static\" -Recurse -Force
141
142
Set-Location "$ProjectDir\src\app\server"
scripts/deploy.sh
@@ -134,6 +134,7 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
134
135
+ mkdir -p "$PROJECT_DIR/src/app/server/static"
cp -r "$PROJECT_DIR/src/app/static/"* "$PROJECT_DIR/src/app/server/static/"
cd "$PROJECT_DIR/src/app/server"
0 commit comments