mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-05 14:11:34 +00:00
10 lines
157 B
Bash
10 lines
157 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
cd "$(dirname "${0}")/.."
|
||
|
for SAMPLE_PATH in samples/*
|
||
|
do
|
||
|
pushd "${SAMPLE_PATH}" > /dev/null
|
||
|
./gradlew -q build
|
||
|
popd > /dev/null
|
||
|
done
|