10 lines
105 B
Bash
10 lines
105 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
SANITIZER="${1:-asan}"
|
||
|
|
||
|
cp -a /c-toxcore .
|
||
|
cd c-toxcore
|
||
|
.circleci/cmake-"$SANITIZER"
|