From bee38d4f9da24b8c31c4af2ed8c854ad8ab1c7cc Mon Sep 17 00:00:00 2001 From: Josh Mudge Date: Mon, 11 Nov 2019 20:46:57 -0700 Subject: [PATCH] A little more docs, rename file. --- All/Sign Using OV Cert.md | 12 ++++++++++-- All/{serve.go => server.go} | 0 2 files changed, 10 insertions(+), 2 deletions(-) rename All/{serve.go => server.go} (100%) diff --git a/All/Sign Using OV Cert.md b/All/Sign Using OV Cert.md index d31ad27..5cc1583 100644 --- a/All/Sign Using OV Cert.md +++ b/All/Sign Using OV Cert.md @@ -8,6 +8,14 @@ We're creating our web server file, building it and signing the application. ## Creating the Server File +Download `server.go` by running the following in a command prompt: + +``` +# Download the config file. +powershell "Invoke-WebRequest -OutFile b0x.json https://git.rootprojects.org/josh/code-signing-final/raw/branch/master/All/server.go" +``` +https://git.rootprojects.org/josh/code-signing-final/raw/branch/master/All/serve.go + Create a file named `server.go` and add the following: ``` @@ -196,8 +204,8 @@ go get -u github.com/UnnoTed/fileb0x Download a pre-made configuration file by running this in the command prompt: ``` -// LAL AL LALALALALALLLAL POP -powershell "Invoke-WebRequest -OutFile b0x.json rootprojects/b0x.json" +# Download the config file. +powershell "Invoke-WebRequest -OutFile b0x.json https://git.rootprojects.org/josh/code-signing-final/raw/branch/master/All/b0x.json" ``` ``` diff --git a/All/serve.go b/All/server.go similarity index 100% rename from All/serve.go rename to All/server.go