Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ReToCode committed Jul 10, 2024
1 parent 3a7a8cf commit 3140ad9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions openshift/release/create-release-branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ git fetch openshift main
git checkout openshift/main -- .github/workflows openshift OWNERS_ALIASES OWNERS Makefile

make generate-dockerfiles
make RELEASE=$release generate-release
make RELEASE="$release" generate-release
git add .github/workflows openshift OWNERS_ALIASES OWNERS Makefile
git commit -m "Add openshift specific files."

Expand All @@ -30,9 +30,9 @@ PATCH_DIR="openshift/patches"
if [ -d "openshift/patches-${release}" ]; then
PATCH_DIR="openshift/patches-${release}"
# Update the nightly test images to actual versioned images
sed -i "s/knative-nightly:knative/knative-${release}:knative/g" ${PATCH_DIR}/*.patch
sed -i "s/knative-nightly:knative/knative-${release}:knative/g" "${PATCH_DIR}"/*.patch
fi
git apply $PATCH_DIR/*
make RELEASE=$release generate-release
git apply "$PATCH_DIR"/*
make RELEASE="$release" generate-release
git add .
git commit -am ":fire: Apply carried patches."

0 comments on commit 3140ad9

Please sign in to comment.