Skip to content

Commit 406d3b8

Browse files
committed
build_iso.sh: Correct shellcheck warning
Use of bakctick should be avoided. For more information, see https://www.shellcheck.net/wiki/SC2006 Signed-off-by: Erwann Roussy <[email protected]>
1 parent b82da7c commit 406d3b8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

build_iso.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
wd=`dirname $0`
3+
wd=${dirname $0}
44
#docker-compose -f $wd/docker-compose.yml run --rm fai-setup bash -c "rm -rf /ext/*"
55

66
# removing the volume in case it exists from a precedent build operation
@@ -38,5 +38,4 @@ docker cp fai-setup:/ext/seapath.iso .
3838
docker-compose -f $wd/docker-compose.yml down
3939

4040
# Removing the volume
41-
docker volume rm build_debian_iso_ext
42-
41+
docker volume rm build_debian_iso_ext

0 commit comments

Comments
 (0)