mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-09 18:57:35 +00:00
14 lines
176 B
Bash
14 lines
176 B
Bash
#!/bin/bash
|
|
|
|
source "$(dirname "${BASH_SOURCE}")/init.sh"
|
|
|
|
for f in $HUB_CRD_FILES
|
|
do
|
|
cp $f ./deploy/hub/
|
|
done
|
|
|
|
for f in $SPOKE_CRD_FILES
|
|
do
|
|
cp $f ./deploy/spoke/
|
|
done
|