Skip to content

Commit 15653d3

Browse files
dustymabejlebon
authored andcommitted
cmd-podman-build: use relative path for repos secret
We thought this needed to be an absolute path but it appears to work as a relative path and will make a later patch easier to implement as a result.
1 parent 325ca2b commit 15653d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmd-podman-build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ cat src/config/*.repo > tmp/all.repo
3535
if [ -d src/yumrepos ]; then
3636
cat src/yumrepos/*.repo >> tmp/all.repo
3737
fi
38-
repos=$(realpath tmp/all.repo)
38+
repos="tmp/all.repo"
3939

4040
set -x
4141
podman build --from "$from" \

0 commit comments

Comments
 (0)