summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2022-11-06 14:36:02 +0900
committerRyo Nakamura <upa@haeena.net>2022-11-06 14:36:02 +0900
commit15dbb564c8a68a159b997f113751bbbc038b44d0 (patch)
tree70114740414e934bece55f53ced948e44f4f8154
parent2efffc21f448f318fcdc17ee2ee4be85475be331 (diff)
add `test on ubuntu` badge to README and tiny fixes
-rw-r--r--README.md2
-rw-r--r--docker/Dockerfile-centos-82
-rw-r--r--docker/README.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 9b1bae6..bbc3b1a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# mscp
-[![build on ubuntu](https://github.com/upa/mscp/actions/workflows/build-ubuntu.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/build-ubuntu.yml) [![build on macOS](https://github.com/upa/mscp/actions/workflows/build-macos.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/build-macos.yml)
+[![build on ubuntu](https://github.com/upa/mscp/actions/workflows/build-ubuntu.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/build-ubuntu.yml) [![build on macOS](https://github.com/upa/mscp/actions/workflows/build-macos.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/build-macos.yml) [![test on ubuntu](https://github.com/upa/mscp/actions/workflows/test.yml/badge.svg)](https://github.com/upa/mscp/actions/workflows/test.yml)
`mscp`, a variant of `scp`, copies files over multiple ssh (sftp)
diff --git a/docker/Dockerfile-centos-8 b/docker/Dockerfile-centos-8
index 8deae76..8210eca 100644
--- a/docker/Dockerfile-centos-8
+++ b/docker/Dockerfile-centos-8
@@ -20,5 +20,5 @@ RUN cd ${mscpdir} \
RUN cd ${mscpdir} \
&& cmake -B build -DBUILD_PKG=1 \
&& cd ${mscpdir}/build \
- &&cpack -G RPM CPackConfig.cmake
+ && cpack -G RPM CPackConfig.cmake
diff --git a/docker/README.md b/docker/README.md
index 5bacc68..8576acd 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -25,7 +25,7 @@ cd ..
docker build --rm -t mscp-test -f docker/Dockerfile-test .
-docker run --init -it --rm mscp-test bash -c "/usr/sbin/sshd; cd /mscp/build; ctest --verbose"
+docker run --init --rm mscp-test bash -c "/usr/sbin/sshd; cd /mscp/build; ctest --verbose"
```
I don't know whether these these are good way. \ No newline at end of file