Skip to content

Commit c7179a4

Browse files
committed
Fix two shellchecks. (SC2086)
1 parent 1c16918 commit c7179a4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

build-iso

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
. "$(dirname $0)/config.sh"
5+
. "$(dirname "$0")/config.sh"
66

77
ORIG="work/ubuntu-$VERSION-$DISTRO-$ARCH.iso"
88
COPY="work/ubuntu-$VERSION-$DISTRO-$ARCH"
@@ -75,5 +75,4 @@ mkisofs -r -V "Ubuntu $VERSION for Terraform" \
7575
-boot-load-size 4 -boot-info-table \
7676
-o "$ISO" "$COPY"
7777

78-
echo Built $ISO
79-
78+
echo Built "$ISO"

0 commit comments

Comments
 (0)