Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Updating path to match the new lower case github url
Browse files Browse the repository at this point in the history
  • Loading branch information
johnroach committed Nov 27, 2018
1 parent 582a958 commit 11ad0b1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: go
script: go get github.com/JohnRoach/cartridgemapper && go test && go test ./cmd -test.v
script: go get github.com/johnroach/cartridgemapper && go test && go test ./cmd -test.v
&& go build
skip_cleanup: true
before_deploy:
Expand All @@ -13,6 +13,6 @@ deploy:
secure: Q33o81YUuvOjHzYiCYYcPaAncRHJPtmOyotF5dmiAXwYO24pxSxSYhAdUA54uRv2uF4AqxZrChUt7B23wj0Hg0IVfJxQjE9x+vN1+GcXouXZbpc/m9MomroRrs71EE82NQYU1cwjiaiVQcrEtPcSS7xvBVXsZAb3Yo/g9okSQCXNtVQX90+gM2Oeqoc/0ltImkJjC7xFyZPEDYQV29lEYfpjApLEgKy9lERNIAfRmoe/z3jlgOJg0x09Lau+Q9WUDtAAG7L3HhDxyyFCReEonsrSrrHYdWbAz1K/b9zxHyY3912UL8bBX8y4PqGQDDueSVN587GZDfV760wy+tVgntSZdZ+e2aZaFMiF5ldHckM29VmOMoipyVJL3jP8mk/E+w15TkDqGroww6hUqXp5Y+JrZpPiE4/2bwH5MIUE9H6UwI3iJ8GAB6r1n0xs9R6FI8csMQedzAqYHqUHU31pKpBixwqRyh9SZny446lbfGta1cbkeboWQP/nfpn39dsjtcBwDLnPVk5qwHLUkja3Ye7mjZBGwwAa83jPkn0SkuHE3JTntdEdqVI+rKDYaxO78wdWKqtv0NlCtDJAOt7s7L25SNx0yb+C/VSo3eOhfD5Uy4iGYaIRmInGKL2Va9Ut+m4VrYm06+OK/olM3TBd3Gbi084fIp7RoLIBDE+1Ho4=
file: cartridgemapper
on:
repo: JohnRoach/cartridgemapper
repo: johnroach/cartridgemapper
go:
- 1.9.x
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Want me to work on this more? Need coffee to convert to code [![ko-fi](https://www.ko-fi.com/img/donate_sm.png)](https://ko-fi.com/K3K0MJBW)


[![Build Status](https://travis-ci.org/JohnRoach/cartridgemapper.svg?branch=master)](https://travis-ci.org/JohnRoach/cartridgemapper)
[![Build Status](https://travis-ci.org/johnroach/cartridgemapper.svg?branch=master)](https://travis-ci.org/johnroach/cartridgemapper)

This cool tool scans a given Endeca Application an generates documentation regarding the cartridges in HTML or JSON form.

Expand Down
6 changes: 3 additions & 3 deletions cmd/mapEndecaApp.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package cmd
import (
"os"

"github.com/JohnRoach/cartridgemapper/endeca"
"github.com/JohnRoach/cartridgemapper/templates"
"github.com/JohnRoach/cartridgemapper/utils"
"github.com/johnroach/cartridgemapper/endeca"
"github.com/johnroach/cartridgemapper/templates"
"github.com/johnroach/cartridgemapper/utils"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion endeca/cartridge.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"path/filepath"
"strings"

"github.com/JohnRoach/cartridgemapper/utils"
"github.com/johnroach/cartridgemapper/utils"
"github.com/magiconair/properties"
)

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package main

import "github.com/JohnRoach/cartridgemapper/cmd"
import "github.com/johnroach/cartridgemapper/cmd"

func main() {
cmd.Execute()
Expand Down
4 changes: 2 additions & 2 deletions templates/template-helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"html/template"
"os"

"github.com/JohnRoach/cartridgemapper/endeca"
"github.com/JohnRoach/cartridgemapper/utils"
"github.com/johnroach/cartridgemapper/endeca"
"github.com/johnroach/cartridgemapper/utils"
)

//CartridgeOutputHTML receives the cartridges and by using the IndexPage template
Expand Down

0 comments on commit 11ad0b1

Please sign in to comment.