Skip to content

Commit c50e907

Browse files
committed
Update various URLs to reflect fork
Not sure what to do with the USG-related files like CONTRIBUTING, DISCLAIMER, and NOTICE, so leaving them untouched for now.
1 parent 0f6bee8 commit c50e907

File tree

12 files changed

+15
-16
lines changed

12 files changed

+15
-16
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: go vet ./...
4343

4444
- name: Build
45-
run: mkdir bin && go build -v -ldflags "-X github.com/ArmyCyberInstitute/cmgr/cmgr.version=`git describe --tags`" -o bin ./...
45+
run: mkdir bin && go build -v -ldflags "-X github.com/picoCTF/cmgr/cmgr.version=`git describe --tags`" -o bin ./...
4646

4747
- name: Unit Tests
4848
run: go test -v ./...

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ identify permissions and other errors and is highly recommended for the first
1818
time you use `cmgr` on a system.
1919

2020
```sh
21-
wget https://github.com/ArmyCyberInstitute/cmgr/releases/latest/download/examples.tar.gz
22-
wget https://github.com/ArmyCyberInstitute/cmgr/releases/latest/download/cmgr_`uname -s | tr '[:upper:]' '[:lower:]'`_amd64.tar.gz
21+
wget https://github.com/picoCTF/cmgr/releases/latest/download/examples.tar.gz
22+
wget https://github.com/picoCTF/cmgr/releases/latest/download/cmgr_`uname -s | tr '[:upper:]' '[:lower:]'`_amd64.tar.gz
2323
tar xzvf examples.tar.gz
2424
cd examples
2525
tar xzvf ../cmgr_`uname -s | tr '[:upper:]' '[:lower:]'`_amd64.tar.gz
@@ -122,8 +122,7 @@ can be found [here](cmd/cmgrd/swagger.yaml).
122122

123123
If you're interested in contributing, modifying, or extending **cmgr**, the
124124
core functionality of the project is implemented in a single Go library under
125-
the `cmgr` directory. You can view the API documentation on
126-
[go.dev](https://pkg.go.dev/github.com/ArmyCyberInstitute/cmgr/cmgr).
125+
the `cmgr` directory.
127126
Additionally, the _SQLite3_ database is intended to function as a read-only
128127
API and its schema can be found [here](cmgr/database.go).
129128

@@ -132,7 +131,7 @@ _cgo_ enabled for at least the initial build where the _sqlite3_ driver is
132131
built and installed. To get started, you can run:
133132

134133
```sh
135-
git clone https://github.com/ArmyCyberInstitute/cmgr
134+
git clone https://github.com/picoCTF/cmgr
136135
cd cmgr
137136
go get -v -t -d ./...
138137
mkdir bin

cmd/cmgr/builds.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strconv"
77

8-
"github.com/ArmyCyberInstitute/cmgr/cmgr"
8+
"github.com/picoCTF/cmgr/cmgr"
99
)
1010

1111
func doBuild(mgr *cmgr.Manager, args []string) int {

cmd/cmgr/challenges.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"regexp"
1010
"time"
1111

12-
"github.com/ArmyCyberInstitute/cmgr/cmgr"
12+
"github.com/picoCTF/cmgr/cmgr"
1313
)
1414

1515
func listChallenges(mgr *cmgr.Manager, args []string) int {

cmd/cmgr/instances.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strconv"
77

8-
"github.com/ArmyCyberInstitute/cmgr/cmgr"
8+
"github.com/picoCTF/cmgr/cmgr"
99
)
1010

1111
func startInstance(mgr *cmgr.Manager, args []string) int {

cmd/cmgr/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"log"
77
"os"
88

9-
"github.com/ArmyCyberInstitute/cmgr/cmgr"
9+
"github.com/picoCTF/cmgr/cmgr"
1010
)
1111

1212
const (

cmd/cmgr/playtest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"strings"
1616
"time"
1717

18-
"github.com/ArmyCyberInstitute/cmgr/cmgr"
18+
"github.com/picoCTF/cmgr/cmgr"
1919
)
2020

2121
func playtestChallenge(mgr *cmgr.Manager, args []string) int {

cmd/cmgr/schemas.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"gopkg.in/yaml.v2"
1111

12-
"github.com/ArmyCyberInstitute/cmgr/cmgr"
12+
"github.com/picoCTF/cmgr/cmgr"
1313
)
1414

1515
func listSchemas(mgr *cmgr.Manager, args []string) int {

cmd/cmgr/system.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"flag"
66
"fmt"
77

8-
"github.com/ArmyCyberInstitute/cmgr/cmgr"
8+
"github.com/picoCTF/cmgr/cmgr"
99
)
1010

1111
func resetSystemState(mgr *cmgr.Manager, args []string) int {

cmd/cmgrd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"strconv"
1616
"strings"
1717

18-
"github.com/ArmyCyberInstitute/cmgr/cmgr"
18+
"github.com/picoCTF/cmgr/cmgr"
1919
)
2020

2121
type state struct {

0 commit comments

Comments
 (0)