Skip to content

Commit 5a7f568

Browse files
committed
chore(build): quote target directory
1 parent 55a0e9d commit 5a7f568

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build/build-all-by-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
cd $(dirname "$0")
3+
cd "$(dirname "$0")"
44

55
# init variable `builds`
66
source ./build-all.inc.sh

build/build-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
cd $(dirname "$0")
3+
cd "$(dirname "$0")"
44
rm -rf ../output/
55

66
# init variable `builds`

build/build-current.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
cd $(dirname "$0")
3+
cd "$(dirname "$0")"
44
rm -rf ../output/
55

66
GOARCH=$(go env GOARCH)

build/build-docker-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
cd $(dirname "$0")
3+
cd "$(dirname "$0")"
44
source ./build.inc.version.sh
55

66
TAG_PREFIX=${TAG_PREFIX:-mjpclab/ghfs}

build/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
cd $(dirname "$0")
3+
cd "$(dirname "$0")"
44

55
source ./build.inc.sh
66

0 commit comments

Comments
 (0)