Skip to content

Commit

Permalink
idk what have changed but this makes it work again
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisCris committed Apr 21, 2024
1 parent 51fcecb commit dd7a43b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build_executable.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ cd ".\frontend\palworld-pal-editor-webui"
cd "..\..\"
# Move the build directory
Remove-Item ".\src\palworld_pal_editor\webui" -Recurse -Force
Move-Item -Path ".\frontend\palworld-pal-editor-webui\dist" -Destination ".\src\palworld_pal_editor\webui" -Force
New-Item -Path ".\src\palworld_pal_editor\webui" -ItemType "directory"
Move-Item -Path ".\frontend\palworld-pal-editor-webui\dist\*" -Destination ".\src\palworld_pal_editor\webui" -Force


# Determine the appropriate Python command
Expand Down
3 changes: 2 additions & 1 deletion pypi_publish.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ cd ".\frontend\palworld-pal-editor-webui"
cd "..\..\"
# Move the build directory
Remove-Item ".\src\palworld_pal_editor\webui" -Recurse -Force
Move-Item -Path ".\frontend\palworld-pal-editor-webui\dist" -Destination ".\src\palworld_pal_editor\webui" -Force
New-Item -Path ".\src\palworld_pal_editor\webui" -ItemType "directory"
Move-Item -Path ".\frontend\palworld-pal-editor-webui\dist\*" -Destination ".\src\palworld_pal_editor\webui" -Force


# Determine the appropriate Python command
Expand Down
3 changes: 2 additions & 1 deletion setup_and_run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ cd ".\frontend\palworld-pal-editor-webui"
cd "..\..\"
# Move the build directory
Remove-Item ".\src\palworld_pal_editor\webui" -Recurse -Force
Move-Item -Path ".\frontend\palworld-pal-editor-webui\dist" -Destination ".\src\palworld_pal_editor\webui" -Force
New-Item -Path ".\src\palworld_pal_editor\webui" -ItemType "directory"
Move-Item -Path ".\frontend\palworld-pal-editor-webui\dist\*" -Destination ".\src\palworld_pal_editor\webui" -Force


# Determine the appropriate Python command
Expand Down

0 comments on commit dd7a43b

Please sign in to comment.