16 lines
329 B
Bash
16 lines
329 B
Bash
|
#!/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
|