From 3d41fff62b5ad2ba97a25a0bf63f9154058cc9e1 Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Fri, 17 Feb 2023 18:42:32 +0000 Subject: [PATCH] docs: various typos --- CONTRIBUTING.md | 2 +- containerised/Dockerfile | 2 +- containerised/Dockerfile_dev | 2 +- create_release.sh | 6 ++++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index afcfe0e..1005181 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ oxker encourages any, and all, suggestions, bug reports, pull requests, and/or f ## Submitting Issues -Please use the oxker [issue templates for](https://github.com/mrjackwills/oxker/issues/new/choose) any Bug Report, Feature Suggestions, +Please use the oxker [issue templates](https://github.com/mrjackwills/oxker/issues/new/choose) for any Bug Report, Feature Suggestions, Refactor Idea, or Security Vulnerabilities. Don't hesitate to submit any issues or pull requests, regardless of size. diff --git a/containerised/Dockerfile b/containerised/Dockerfile index 1b40165..0716706 100644 --- a/containerised/Dockerfile +++ b/containerised/Dockerfile @@ -59,4 +59,4 @@ COPY --from=BUILDER /oxker /app/ # Run the application # this is used in the application itself, to stop itself show when running from a docker container, so DO NOT EDIT -ENTRYPOINT [ "./app/oxker"] +ENTRYPOINT [ "/app/oxker"] diff --git a/containerised/Dockerfile_dev b/containerised/Dockerfile_dev index 77a5522..88accee 100644 --- a/containerised/Dockerfile_dev +++ b/containerised/Dockerfile_dev @@ -11,7 +11,7 @@ COPY ./target/x86_64-unknown-linux-musl/release/oxker /app/ # Run the application # this is used in the application itself, to stop itself show when running from a docker container, so DO NOT EDIT -ENTRYPOINT [ "./app/oxker"] +ENTRYPOINT [ "/app/oxker"] # Dev build for testing # docker build -t oxker_dev -f Dockerfile . && docker run --rm -it --volume /var/run/docker.sock:/var/run/docker.sock:ro oxker_dev diff --git a/create_release.sh b/create_release.sh index 75484be..7e20eca 100755 --- a/create_release.sh +++ b/create_release.sh @@ -1,7 +1,7 @@ #!/bin/bash # rust create_release -# v0.2.1 +# v0.2.2 STAR_LINE='****************************************' CWD=$(pwd) @@ -231,7 +231,9 @@ release_flow() { echo -e "\ncargo fmt" cargo fmt - + echo -e "\n${PURPLE}cargo check${RESET}\n" + cargo check + release_continue "git add ." git add .