We no longer include the edge mgmt federated module so let's remove all remaining traces of the integration.
13 lines
479 B
Bash
13 lines
479 B
Bash
#!/bin/bash
|
|
|
|
# Run commands in the background using & operator
|
|
npx @rtk-query/codegen-openapi ./api/config/imageBuilder.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/rhsm.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/contentSources.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/provisioning.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/compliance.ts &
|
|
npx @rtk-query/codegen-openapi ./api/config/composerCloudApi.ts &
|
|
|
|
# Wait for all background jobs to finish
|
|
wait
|
|
|