Skip to content

Commit 6c9b6a5

Browse files
committed
tools: fix indentation.
Whitespace changes only. Signed-off-by: Rusty Russell <[email protected]>
1 parent 08f8b78 commit 6c9b6a5

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

tools/build-release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ for target in $TARGETS; do
189189
Ubuntu*)
190190
distributions=${platform#Ubuntu-}
191191
[ "$distributions" = "Ubuntu" ] && distributions="focal jammy noble"
192-
for d in $distributions; do
192+
for d in $distributions; do
193193
# Capitalize the first letter of distro
194194
D=$(echo "$d" | awk '{print toupper(substr($0,1,1))substr($0,2)}')
195-
echo "Building Ubuntu $D Image"
196-
docker run --rm -v "$(pwd)":/repo -e FORCE_MTIME="$MTIME" -e FORCE_VERSION="$VERSION" -e MAKEPAR="$MAKEPAR" cl-repro-"$d"
195+
echo "Building Ubuntu $D Image"
196+
docker run --rm -v "$(pwd)":/repo -e FORCE_MTIME="$MTIME" -e FORCE_VERSION="$VERSION" -e MAKEPAR="$MAKEPAR" cl-repro-"$d"
197197
echo "Ubuntu $D Image Built"
198-
done
198+
done
199199
;;
200200
*)
201201
echo "No Dockerfile for $platform" >&2

tools/repro-build.sh

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ export LANG LC_ALL
99
for arg; do
1010
case "$arg" in
1111
--force-version=*)
12-
FORCE_VERSION=${arg#*=}
12+
FORCE_VERSION=${arg#*=}
1313
;;
14-
--force-mtime=*)
15-
FORCE_MTIME=${arg#*=}
16-
;;
17-
--help)
18-
echo "Usage: [--force-version=<ver>] [--force-mtime=YYYY-MM-DD]"
19-
exit 0
20-
;;
21-
*)
22-
echo "Unknown arg $arg" >&2
23-
exit 1
24-
;;
14+
--force-mtime=*)
15+
FORCE_MTIME=${arg#*=}
16+
;;
17+
--help)
18+
echo "Usage: [--force-version=<ver>] [--force-mtime=YYYY-MM-DD]"
19+
exit 0
20+
;;
21+
*)
22+
echo "Unknown arg $arg" >&2
23+
exit 1
24+
;;
2525
esac
2626
shift
2727
done

0 commit comments

Comments
 (0)