We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d29554 commit cfcee02Copy full SHA for cfcee02
tools/olm/generate-olm-bundle.sh
@@ -39,8 +39,8 @@ CSV_TEMPLATE_DIR="${BASEDIR}/csv-template"
39
40
# Generate bundle in a docker container
41
generate_olm_bundle() {
42
- uid="$(id -g ${USER})"
43
- gid="$(id -u ${USER})"
+ uid="$(id -u ${USER})"
+ gid="$(id -g ${USER})"
44
cp -r ../../helm ./
45
docker build -t "${OLMTOOL_IMG}" -f utils.Dockerfile ${BASEDIR}
46
docker run --user="${uid}:${gid}" -v ${BASEDIR}:/olm "${OLMTOOL_IMG}"
0 commit comments