Skip to content

Commit 9c092a0

Browse files
committed
whitespace 2
1 parent 96cd7f4 commit 9c092a0

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Copyright (C) 2023 James Fuller, <jim@webcomposite.com>, et al.
2-
#
3-
# SPDX-License-Identifier: curl
1+
# Copyright (C) 2023 James Fuller, <jim@webcomposite.com>, et al.
2+
#
3+
# SPDX-License-Identifier: curl

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Send your suggestions using one of these methods:
2626

2727
3. as an [issue](https://github.com/curl/curl-container/issues)
2828

29-
/ The curl-container team!
29+
/ The curl-container team!

adrs/01-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ We could have opted for other container build frameworks/language or other adjun
7373
buildah seemed to have the right set of features and mature ... perhaps in the future we will have even more choices.
7474

7575
Presumably we could have gone full 'code as infrastructure' and invoke buildah programmatically ... opted for shell scripts
76-
for simplicity.
76+
for simplicity.

cosign.pub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-----BEGIN PUBLIC KEY-----
22
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEwFTRXl79xRiAFa5ZX4aZ7Vkdqmji
33
5WY0zqc3bd6B08CsNftlYsu2gAqdWm0IlzoQpi2Zi5C437RTg/DgLQ6Bkg==
4-
-----END PUBLIC KEY-----
4+
-----END PUBLIC KEY-----

etc/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ]; then
1111
set -- curl "$@"
1212
fi
1313

14-
exec "$@"
14+
exec "$@"

tests/steps/features.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ def invoke_podman_image(context, image):
2121
cmd = f"podman run -it {image} -V".split()
2222
p = subprocess.run(cmd,capture_output=True, text=True)
2323
assert p.returncode == 0
24-

tests/test_image.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ ctrmnt=$(buildah mount $ctr)
2525

2626
# check file exists
2727
if [[ ! -f "$ctrmnt/usr/bin/curl" ]]; then
28-
echo "/usr/bin/curl does not exist."
28+
echo "/usr/bin/curl does not exist."
2929
fi
3030
if [[ ! -f "$ctrmnt/usr/lib/libcurl.so.4.8.0" ]]; then
31-
echo "/usr/lib/libcurl.so.4.8.0 does not exist."
31+
echo "/usr/lib/libcurl.so.4.8.0 does not exist."
3232
fi
3333

3434
# check symlink exists and is not broken
3535
if [ ! -L "$ctrmnt/usr/lib/libcurl.so.4" ] && [ ! -e "$ctrmnt/usr/lib/libcurl.so.4" ]; then
36-
echo "/usr/lib/libcurl.so.4 symlink does not exist or is broken."
36+
echo "/usr/lib/libcurl.so.4 symlink does not exist or is broken."
3737
fi
3838
if [ ! -L "$ctrmnt/usr/lib/libcurl.so" ] && [ ! -e "$ctrmnt/usr/lib/libcurl.so" ]; then
39-
echo "/usr/lib/libcurl.so symlink does not exist or is broken."
39+
echo "/usr/lib/libcurl.so symlink does not exist or is broken."
4040
fi
4141

4242
# test running curl
43-
buildah run $ctr /usr/bin/curl -V
43+
buildah run $ctr /usr/bin/curl -V

0 commit comments

Comments
 (0)