Skip to content

Commit

Permalink
Create the manifest folder
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasm-ttd committed Mar 19, 2024
1 parent 264c58e commit 575afcf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/azure-cc/deployment/generate-deployment-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ if [[ $? -ne 0 ]]; then
exit 1
fi

mkdir -p ${MANIFEST_DIR}
if [[ $? -ne 0 ]]; then
echo "Failed to create ${MANIFEST_DIR}"
exit 1
fi

# Input files
INPUT_FILES=(
operator.json operator.parameters.json
Expand Down
6 changes: 6 additions & 0 deletions scripts/gcp-oidc/generate-deployment-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ if [[ $? -ne 0 ]]; then
exit 1
fi

mkdir -p ${MANIFEST_DIR}
if [[ $? -ne 0 ]]; then
echo "Failed to create ${MANIFEST_DIR}"
exit 1
fi

# Input files
INPUT_FILES=(
main.tf outputs.tf variables.tf terraform.tfvars
Expand Down

0 comments on commit 575afcf

Please sign in to comment.