mirror of
https://github.com/newnius/YAO-Dockerfiles.git
synced 2025-06-07 16:21:56 +00:00
15 lines
182 B
Bash
15 lines
182 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if ! [[ -z "${repo}" ]]; then
|
||
|
if [[ -z "${branch}" ]]; then
|
||
|
git clone $repo workspace
|
||
|
else
|
||
|
git clone -b $branch $repo /workspace
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
cd /workspace
|
||
|
|
||
|
$@
|
||
|
|