Skip to content

Commit

Permalink
Enclose BUILD_HOSTNAME in double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jfut committed Feb 22, 2021
1 parent 8606302 commit 4671bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,11 @@ Run the container with bash:
```
# CentOS 8
BUILD_HOSTNAME=centos-8.github.integ.jp
docker run -h ${BUILD_HOSTNAME} --rm -it -v $PWD:/pkg -v ~/.gnupg.el8:/root/.gnupg centos:8 bash
docker run -h "${BUILD_HOSTNAME}" --rm -it -v $PWD:/pkg -v ~/.gnupg.el8:/root/.gnupg centos:8 bash
# CentOS 7
BUILD_HOSTNAME=centos-7.github.integ.jp
docker run -h ${BUILD_HOSTNAME} --rm -it -v $PWD:/pkg -v ~/.gnupg.el7:/root/.gnupg centos:7 bash
docker run -h "${BUILD_HOSTNAME}" --rm -it -v $PWD:/pkg -v ~/.gnupg.el7:/root/.gnupg centos:7 bash
# Setup
yum -y install rpm-sign pinentry
Expand Down

0 comments on commit 4671bdc

Please sign in to comment.