This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| echo "Starting OpenReplay setup..." | |
| # Clone OpenReplay repository | |
| echo "Cloning repository..." | |
| rm -rf openreplay | |
| git clone --depth 1 --branch v1.21.0 https://github.com/openreplay/openreplay openreplay | |
| cd openreplay |