Skip to content

Commit e49ea28

Browse files
committed
chore: remove unnecessary symbols
1 parent 3275622 commit e49ea28

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

opa/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ WORKDIR /opa
8585

8686
RUN <<EOF
8787
# Unfortunately, we need to create a dummy Git repository to allow cyclonedx-gomod to determine the version of OPA
88-
git init && \
89-
git config user.email "[email protected]" && \
90-
git config user.name "Fake commiter" && \
91-
git commit --allow-empty --message "Fake commit, so that we can create a tag" &&
88+
git init
89+
git config user.email "[email protected]"
90+
git config user.name "Fake commiter"
91+
git commit --allow-empty --message "Fake commit, so that we can create a tag"
9292
git tag "v${PRODUCT}"
9393
go build -o opa -buildmode=exe
9494
~/go/bin/cyclonedx-gomod app -json -output-version 1.5 -output "opa_${PRODUCT}.cdx.json" -packages -files

statsd_exporter/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ curl "https://repo.stackable.tech/repository/packages/statsd_exporter/statsd_exp
3131
cd "statsd_exporter-${PRODUCT}" || exit
3232

3333
# Unfortunately, we need to create a dummy Git repository to allow cyclonedx-gomod to determine the version of statsd_exporter
34-
git init && \
35-
git config user.email "[email protected]" && \
36-
git config user.name "Fake commiter" && \
37-
git commit --allow-empty --message "Fake commit, so that we can create a tag" &&
34+
git init
35+
git config user.email "[email protected]"
36+
git config user.name "Fake commiter"
37+
git commit --allow-empty --message "Fake commit, so that we can create a tag"
3838
git tag "v${PRODUCT}"
3939
go build -o ../statsd_exporter
4040
$GOPATH/bin/cyclonedx-gomod app -json -output-version 1.5 -output ../statsd_exporter-${PRODUCT}.cdx.json -packages -files

0 commit comments

Comments
 (0)