From fb4426201c4fece27536dfdbd1bf093df4e50e76 Mon Sep 17 00:00:00 2001 From: Jeffrey Cafferata Date: Mon, 13 Mar 2023 21:31:01 +0100 Subject: [PATCH] DOCS: Removed the prompt character (#2148) Co-authored-by: Tom Limoncelli --- documentation/ci-cd-gitlab.md | 8 ++++---- documentation/writing-providers.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/documentation/ci-cd-gitlab.md b/documentation/ci-cd-gitlab.md index 96b5bc96c..40d3bbe4d 100644 --- a/documentation/ci-cd-gitlab.md +++ b/documentation/ci-cd-gitlab.md @@ -117,13 +117,13 @@ D('cafferata.dev', From that moment everything comes together! Within the [GitLab merge request #1](https://gitlab.com/cafferata/dnscontrol/-/merge_requests/1), a [GitLab pipeline](https://gitlab.com/cafferata/dnscontrol/-/pipelines/656368053) with a [GitLab job](https://gitlab.com/cafferata/dnscontrol/-/jobs/3115895010) starts running containing the command `dnscontrol preview`. The outcome of this job? The desired change that will be made within TransIP. Wow this is cool! ```shell -$ /usr/local/bin/dnscontrol version +/usr/local/bin/dnscontrol version ``` ```shell dnscontrol "3.20.0" ("8bb63be8f5ed996a7ae0a21091954fcab996621b") built 26 Aug 22 14:59 UTC ``` ```shell -$ /usr/local/bin/dnscontrol preview +/usr/local/bin/dnscontrol preview ``` ```shell ******************** Domain: cafferata.dev @@ -167,13 +167,13 @@ What does this (new) YAML configuration mean? When we start the new [GitLab pipeline](https://gitlab.com/cafferata/dnscontrol/-/pipelines/656368384) from the [GitLab web interface](https://gitlab.com/cafferata/dnscontrol/-/pipelines/new), we see the GitLab job [dnscontrol-push](https://gitlab.com/cafferata/dnscontrol/-/jobs/3115896199) which makes the changes within the DNS provider TransIP. ```shell -$ /usr/local/bin/dnscontrol version +/usr/local/bin/dnscontrol version ``` ```shell dnscontrol "3.20.0" ("8bb63be8f5ed996a7ae0a21091954fcab996621b") built 26 Aug 22 14:59 UTC ``` ```shell -$ /usr/local/bin/dnscontrol push +/usr/local/bin/dnscontrol push ``` ```shell ******************** Domain: cafferata.dev diff --git a/documentation/writing-providers.md b/documentation/writing-providers.md index 194ab8395..238d9de6e 100644 --- a/documentation/writing-providers.md +++ b/documentation/writing-providers.md @@ -270,9 +270,9 @@ be prepared to ignore errors about `expected '(', found '[' (and 1 more errors)` How to install and run [golint](https://github.com/golang/lint): ```shell -$ go get -u golang.org/x/lint/golint -$ go install golang.org/x/lint/golint -$ golint ./... +go get -u golang.org/x/lint/golint +go install golang.org/x/lint/golint +golint ./... ```