setup.sh 567 B

123456789101112131415
  1. #!/bin/bash
  2. # Copyright (C) 2023 Amazon.com Inc. or its affiliates. All rights reserved.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. # This script executes some commands to make your onboarding with WAMR easier.
  5. # For example, setting pre-commit hook that will make your code complaint with the
  6. # code style requirements checked in WAMR CI
  7. echo "Copy the pre-commit hook to your hooks folder"
  8. cp pre_commit_hook_sample ../.git/hooks/pre-commit
  9. # Feel free to propose your commands to this script to make developing WAMR easier
  10. echo "Setup is done"