Skip to content

Commit

Permalink
Fix wrong path
Browse files Browse the repository at this point in the history
Signed-off-by: cmoulliard <[email protected]>
  • Loading branch information
cmoulliard committed Sep 5, 2024
1 parent 0b05070 commit 385a971
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions konflux-rhel9.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ Log on to the registries:
```bash
podman login -u [email protected] -p xxxxxx docker.io
```
Disable `setenforce` to avoid such an error reported during the build of the Dockerfile: https://github.com/containers/podman/issues/3234
```bash
sudo setenforce 0
```
Install or curl the installation bash script
```bash
curl -sL -H 'Cache-Control: no-cache, no-store' \
Expand Down
4 changes: 2 additions & 2 deletions scripts/install_buildpack_testing_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ mkdir -p ${BINARY_DIR}
mkdir -p $HOME/bin
mkdir -p ${BUILDPACK_DIR}

cd ${BUILDPACK_TEST_DIR}
cd $HOME/${BUILDPACK_TEST_DIR}

os=$(util::tools::os)
arch=$(util::tools::arch)
Expand Down Expand Up @@ -259,7 +259,7 @@ pack -v buildpack package \
--config "${COMPILED_BUILDPACK}/package.toml" # --publish

print::colored_msg "${CYAN}" "Test case:: Build the Quarkus Buildpack image."
cd ${BUILDPACK_TEST_DIR}/quarkus
cd "${HOME}/${BUILDPACK_TEST_DIR}/quarkus"

# TODO: Grab the version from git tag/ref/etc and pass OS as env var
VERSION="v0.1.0"
Expand Down

0 comments on commit 385a971

Please sign in to comment.