install.sh 300 B

12345678910
  1. #!/bin/sh
  2. # Place this script in the GameLift server package
  3. # GameLift will run this script before opening the server
  4. # https://docs.o3de.org/docs/user-guide/gems/reference/aws/aws-gamelift/build-packaging-for-linux/
  5. sudo dnf install clang -y
  6. sudo dnf install libunwind -y
  7. echo 'Install Success'