You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. #!/bin/bash
  2. set -e -u
  3. THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
  4. LATEST_LJM_COMMIT=$(git ls-remote https://github.com/jitsi/lib-jitsi-meet.git HEAD | awk '{ print $1 }')
  5. pushd ${THIS_DIR}/..
  6. npm install github:jitsi/lib-jitsi-meet#${LATEST_LJM_COMMIT}
  7. git add package.json package-lock.json
  8. git commit -m "deps: lib-jitsi-meet@latest"
  9. popd
  10. echo "Done! Now push your branch to GH and open a PR!"