mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
302 B
Bash
Executable file
10 lines
302 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -u -e -o pipefail
|
|
|
|
# Ensure that the temporary directory does not exist.
|
|
rm -rf ${MATERIAL_REPO_TMP_DIR}
|
|
|
|
# Clone the Material repository into the given temporary directory.
|
|
git clone --depth 1 --branch ${MATERIAL_REPO_BRANCH} ${MATERIAL_REPO_URL} \
|
|
${MATERIAL_REPO_TMP_DIR}
|