mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
17 lines
372 B
Bash
Executable File
17 lines
372 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
if [[ $# -ne 1 || $1 != "-T" ]]; then
|
|
echo "=> Downloading files used for testing"
|
|
|
|
(set -x ; git submodule update --init --recursive)
|
|
if [ $? -ne 0 ]; then
|
|
echo "ERROR: unable to update git submodule"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
echo "=> Downloading dependency (BitByteData) using Carthage"
|
|
(set -x; carthage bootstrap)
|