15 lines
329 B
Bash
Executable file
15 lines
329 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir -p ~/osh
|
|
cd ~/osh
|
|
if [ ! -d openstack-helm ]; then
|
|
git clone https://opendev.org/openstack/openstack-helm.git
|
|
else
|
|
cd openstack-helm && git pull
|
|
fi
|
|
|
|
if [ ! -d openstack-helm-infa ]; then
|
|
git clone https://opendev.org/openstack/openstack-helm-infra.git
|
|
else
|
|
cd openstack-helm-infra && git pull
|
|
fi
|