[Shell-TS] How to pass the first stage?

Checklist:

  1. :white_check_mark: : I’ve uncommented the code.
  2. :white_check_mark: : I’ve saved the changes.
  3. :white_check_mark: : I’ve run the git commands:
git commit -am "[seeking help on forum]"
git push origin master

Here’s a screenshot showing the output from running the Git commands:

remote: [build] > bun install v1.1.4 (fbe2fe0c)
remote: [build] > Resolving dependencies
remote: [build] > Resolved, downloaded and extracted [8]
remote: [build] > error: lockfile had changes, but lockfile is frozen
remote: [build] > note: try re-running without --frozen-lockfile and commit the updated lockfile
remote: [build] Build failed. Check the logs above for the reason.
remote: [build] If you think this is a CodeCrafters error, please contact us at hello@codecrafters.io.
remote:
remote: This test run was abandoned because the machine running it had to be restarted.

Fixed this by running:

npm install -g bun

and then

bun install

1 Like

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.