Skip to content

Commit

Permalink
Updated composer lock file after running composer normalize
Browse files Browse the repository at this point in the history
Sometimes the normalize changes the part composer hashes for the lockfile hash and results in failures on the CI which expect the lockfile to be update to date with composer.json. By updating the lockfile after running normalize that doesn't happen anymore.
  • Loading branch information
WyriHaximus authored Sep 26, 2023
1 parent 2c5617d commit fd96af1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,12 @@
},
"scripts": {
"post-install-cmd": [
"composer normalize"
"composer normalize",
"composer update --lock --no-scripts"
],
"post-update-cmd": [
"composer normalize"
"composer normalize",
"composer update --lock --no-scripts"
]
}
}

0 comments on commit fd96af1

Please sign in to comment.