Skip to content

Commit

Permalink
master: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
fenollp committed Oct 30, 2017
1 parent b08df7f commit bd4c524
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ vendor/

# End of https://www.gitignore.io/api/go

manlion
testman
schemas.go
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: debug

EXE = manlion
EXE = testman

all: $(filter-out schemas.go,$(wildcard *.go)) $(wildcard misc/*.json)
go generate
Expand Down
2 changes: 1 addition & 1 deletion check_latest.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
githubV3APIHeader = "application/vnd.github.v3+json"
latestReleaseURL = "https://api.github.com/repos/CoveredCI/manlion/releases/latest"
latestReleaseURL = "https://api.github.com/repos/CoveredCI/testman/releases/latest"
// jqQuery = "{tag:.tag_name, bins:.assets|map({(.name): .browser_download_url})|add}"
jqQuery = ".tag_name"
)
Expand Down
10 changes: 5 additions & 5 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
pkgVersion = "0.1.0"
pkgTitle = "manlion/" + pkgVersion
pkgTitle = "testman/" + pkgVersion
isDebug = true
)

Expand All @@ -36,12 +36,12 @@ func init() {
}

func usage() (map[string]interface{}, error) {
usage := `manlion
usage := `testman
Usage:
manlion test [--slow]
manlion -h | --help
manlion --version
testman test [--slow]
testman -h | --help
testman --version
Options:
--slow Don't phone home using Websockets
Expand Down
2 changes: 1 addition & 1 deletion misc/rep_v1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"_id": "manlion__rep_v1",
"_id": "rep_v1",
"definitions": {
"code": {
"maximum": 599,
Expand Down
2 changes: 1 addition & 1 deletion misc/req_v1.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"_id": "manlion__req_v1",
"_id": "req_v1",
"additionalProperties": false,
"definitions": {
"headers": {
Expand Down

0 comments on commit bd4c524

Please sign in to comment.