Skip to content

Commit f775f5a

Browse files
committed
yes I renamed it again, LAST TIME I PROMISE!
1 parent c5fb41d commit f775f5a

File tree

16 files changed

+41
-41
lines changed

16 files changed

+41
-41
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
.psenvrc
2121

2222
# The binary
23-
picobot
23+
pico
2424
dist
2525
.env
2626
cache

.goreleaser.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project_name: picobot
1+
project_name: pico
22
builds:
33
- env:
44
- CGO_ENABLED=0
@@ -22,13 +22,13 @@ changelog:
2222
- "^test:"
2323
dockers:
2424
- image_templates:
25-
- picostack/picobot:{{ .Tag }}
26-
- picostack/picobot:v{{ .Major }}
27-
- picostack/picobot:v{{ .Major }}.{{ .Minor }}
28-
- picostack/picobot:latest
25+
- picostack/pico:{{ .Tag }}
26+
- picostack/pico:v{{ .Major }}
27+
- picostack/pico:v{{ .Major }}.{{ .Minor }}
28+
- picostack/pico:latest
2929
nfpms:
3030
- vendor: Southclaws
31-
homepage: https://github.com/picostack/picobot
31+
homepage: https://github.com/picostack/pico
3232
maintainer: Southclaws <[email protected]>
3333
description: |
3434
A docker-compose application manager that deploys and maintains a set of

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
FROM docker/compose
2-
COPY picobot /bin/picobot
3-
ENTRYPOINT ["picobot"]
2+
COPY pico /bin/pico
3+
ENTRYPOINT ["pico"]

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: "3"
22

33
services:
4-
picobot:
5-
image: picostack/picobot
4+
pico:
5+
image: picostack/pico
66
environment:
77
HOSTNAME: ${HOSTNAME}
88
DEBUG: "1"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/picostack/picobot
1+
module github.com/picostack/pico
22

33
go 1.13
44

install.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ set -e
66
usage() {
77
this=$1
88
cat <<EOF
9-
$this: download go binaries for picostack/picobot
9+
$this: download go binaries for picostack/pico
1010
1111
Usage: $this [-b] bindir [-d] [tag]
1212
-b sets bindir or installation directory, Defaults to ./bin
1313
-d turns on debug logging
1414
[tag] is a tag from
15-
https://github.com/picostack/picobot/releases
15+
https://github.com/picostack/pico/releases
1616
If tag is missing, then the latest will be used.
1717
1818
Generated by godownloader
@@ -51,7 +51,7 @@ execute() {
5151
srcdir="${tmpdir}"
5252
(cd "${tmpdir}" && untar "${TARBALL}")
5353
test ! -d "${BINDIR}" && install -d "${BINDIR}"
54-
for binexe in "picobot" ; do
54+
for binexe in "pico" ; do
5555
if [ "$OS" = "windows" ]; then
5656
binexe="${binexe}.exe"
5757
fi
@@ -344,10 +344,10 @@ End of functions from https://github.com/client9/shlib
344344
------------------------------------------------------------------------
345345
EOF
346346

347-
PROJECT_NAME="picobot"
347+
PROJECT_NAME="pico"
348348
OWNER=picostack
349-
REPO="picobot"
350-
BINARY=picobot
349+
REPO="pico"
350+
BINARY=pico
351351
FORMAT=tar.gz
352352
OS=$(uname_os)
353353
ARCH=$(uname_arch)

main.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"go.uber.org/zap"
1414
"go.uber.org/zap/zapcore"
1515

16-
"github.com/picostack/picobot/service"
16+
"github.com/picostack/pico/service"
1717
)
1818

1919
var version = "master"
@@ -41,21 +41,21 @@ func init() {
4141
func main() {
4242
app := cli.NewApp()
4343

44-
app.Name = "picobot"
44+
app.Name = "pico"
4545
app.Usage = "A git-driven task automation butler."
46-
app.UsageText = `picobot [flags] [command]`
46+
app.UsageText = `pico [flags] [command]`
4747
app.Version = version
48-
app.Description = `Picobot is a git-driven task runner to automate the application of configs.`
48+
app.Description = `Pico is a git-driven task runner to automate the application of configs.`
4949
app.Author = "Southclaws"
5050
app.Email = "[email protected]"
5151

5252
app.Commands = []cli.Command{
5353
{
5454
Name: "run",
5555
Aliases: []string{"r"},
56-
Description: `Starts the Picobot daemon with the specified target repository. This
57-
repository should contain one or more configuration files for Picobot. When
58-
this repository has new commits, Picobot will automatically reconfigure.`,
56+
Description: `Starts the Pico daemon with the specified target repository. This
57+
repository should contain one or more configuration files for Pico. When
58+
this repository has new commits, Pico will automatically reconfigure.`,
5959
Usage: "argument `target` specifies Git repository for configuration.",
6060
ArgsUsage: "target",
6161
Flags: []cli.Flag{

service/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/pkg/errors"
1111
"github.com/robertkrimen/otto"
1212

13-
"github.com/picostack/picobot/service/task"
13+
"github.com/picostack/pico/service/task"
1414
)
1515

1616
// State represents a desired system state

service/config/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/robertkrimen/otto"
88
"github.com/stretchr/testify/assert"
99

10-
"github.com/picostack/picobot/service/task"
10+
"github.com/picostack/pico/service/task"
1111
)
1212

1313
func Test_applyFileTargets(t *testing.T) {

service/secret/memory/memory.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package memory
22

33
import (
4-
"github.com/picostack/picobot/service/secret"
4+
"github.com/picostack/pico/service/secret"
55
)
66

77
// MemorySecrets implements a simple in-memory secret.Store for testing

0 commit comments

Comments
 (0)