mirror of
https://github.com/GayPizzaSpecifications/concrete.git
synced 2025-08-03 05:10:56 +00:00
10 lines
157 B
Bash
Executable File
10 lines
157 B
Bash
Executable File
#!/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
|