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 6af834f commit bf9dffeCopy full SHA for bf9dffe
circle-test.sh
@@ -32,7 +32,7 @@ tags=()
32
33
# Gather directories with a Dockerfile and sanitize the path to remove leading
34
# a leading ./ and multiple slashes into a single slash.
35
-dockerfiles=$(find "$dir" -name nightly -prune -o -name Dockerfile -print0 | grep -v dockerlib | xargs -0 -I{} dirname {} | sed 's@^./@@' | sed 's@//*@/@g')
+dockerfiles=$(find "$dir" -name nightly -prune -o -name Dockerfile -print0 | xargs -0 -I{} dirname {} | grep -v dockerlib | sed 's@^./@@' | sed 's@//*@/@g')
36
for path in $dockerfiles; do
37
# Generate a tag by replacing the first slash with a colon and all remaining slashes with a dash.
38
tag=$(echo $path | sed 's@/@:@' | sed 's@/@-@g')
0 commit comments