Skip to content

Commit

Permalink
Merge pull request #288 from holysoles/develop
Browse files Browse the repository at this point in the history
fix(startup) Don't fail if appmanifest doesn't exist
  • Loading branch information
jammsen authored Jan 12, 2025
2 parents ba584e8 + 8d0fc34 commit 4eb8fb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

[Back to main](README.md#changelog)
## 2025-01-11

- Fixed startup script failure if missing appmanifest @holysoles (#288)

## 2024-12-23

- added new configs for Palworld: Feybreak @jammsen (#283)
Expand Down
2 changes: 1 addition & 1 deletion includes/server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function fresh_install_server() {
function update_server() {
# Workaround fix for 0x6 error
ei ">>> Applying workaround fix for 'Error! App '2394010' state is 0x6 after update job.' message, since update 0.3.X..."
rm /palworld/steamapps/appmanifest_2394010.acf
rm -f /palworld/steamapps/appmanifest_2394010.acf
if [[ -n $STEAMCMD_VALIDATE_FILES ]] && [[ $STEAMCMD_VALIDATE_FILES == "true" ]]; then
ei ">>> Doing an update with validation of the gameserver files..."
if [[ -n $WEBHOOK_ENABLED ]] && [[ $WEBHOOK_ENABLED == "true" ]]; then
Expand Down

0 comments on commit 4eb8fb1

Please sign in to comment.