Skip to content

Commit bffed72

Browse files
committed
rename SIL International to SIL Global and silinternational to sil-org
1 parent 44dab47 commit bffed72

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 SIL International
3+
Copyright (c) 2022 SIL GLobal
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Based on a couple assumptions, this library can replace all instances in an ECS
77
any of the running services.
88

99
This process is available as:
10-
- A Go Module: `import "github.com/silinternational/ecs-ami-deploy/v3"`
10+
- A Go Module: `import "github.com/sil-org/ecs-ami-deploy/v3"`
1111
- A command line application. See `cli/` directory
1212

1313
## Why did we build this?
@@ -66,7 +66,7 @@ available or not. When `--force-replacement` is enabled the process is _not_ ide
6666
- [ ] Create Lambda wrapper and provide trigger examples for schedule and SNS when newer AMI is released
6767

6868
## CLI Usage
69-
1. Grab the latest binary for your platform at https://github.com/silinternational/ecs-ami-deploy/releases
69+
1. Grab the latest binary for your platform at https://github.com/sil-org/ecs-ami-deploy/releases
7070
2. The CLI makes use of AWS's SDK for Go, which can load authentication credentials from various places similar to the
7171
AWS CLI itself
7272
3. Run `ecs-ami-deploy list-clusters` to check if it's working and what clusters you have available.

cli/cmd/latest-ami.go

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

88
"github.com/spf13/cobra"
99

10-
ead "github.com/silinternational/ecs-ami-deploy/v3"
10+
ead "github.com/sil-org/ecs-ami-deploy/v3"
1111
)
1212

1313
var AMIFilter string

cli/cmd/list-clusters.go

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

8-
ead "github.com/silinternational/ecs-ami-deploy/v3"
8+
ead "github.com/sil-org/ecs-ami-deploy/v3"
99
"github.com/spf13/cobra"
1010
)
1111

cli/cmd/upgrade-cluster.go

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

88
"github.com/spf13/cobra"
99

10-
ead "github.com/silinternational/ecs-ami-deploy/v3"
10+
ead "github.com/sil-org/ecs-ami-deploy/v3"
1111
)
1212

1313
var (

cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/silinternational/ecs-ami-deploy/v3/cli/cmd"
6+
"github.com/sil-org/ecs-ami-deploy/v3/cli/cmd"
77
)
88

99
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/silinternational/ecs-ami-deploy/v3
1+
module github.com/sil-org/ecs-ami-deploy/v3
22

33
go 1.21
44

upgrader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/silinternational/ecs-ami-deploy/v3/internal"
13+
"github.com/sil-org/ecs-ami-deploy/v3/internal"
1414

1515
"github.com/aws/aws-sdk-go-v2/aws"
1616
"github.com/aws/aws-sdk-go-v2/service/autoscaling"

0 commit comments

Comments
 (0)