Skip to content

Commit 1275c12

Browse files
author
Derek
committed
feat: rebrand HyperSec to HyperI across entire project
- Copyright: (c) 2025 HyperSec Pty Ltd → (c) 2025-2026 HYPERI PTY LIMITED - Go module: github.com/hypersec-io/macbash → github.com/hyperi-io/macbash - All Go import paths updated to match new module - golangci-lint local-prefixes updated - nfpm.yaml: maintainer, vendor, homepage updated - install.sh: repo URL updated - README.md: all URLs, badges, and install instructions fixed - LICENSE: copyright holder updated - action.yml: copyright year normalized
1 parent 684756e commit 1275c12

26 files changed

Lines changed: 51 additions & 51 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Language: YAML (GitHub Actions)
55
#
66
# License: Apache-2.0
7-
# Copyright: (c) 2025 HyperSec Pty Ltd
7+
# Copyright: (c) 2025-2026 HYPERI PTY LIMITED
88

99
name: CI
1010

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Language: YAML (GitHub Actions)
55
#
66
# License: Apache-2.0
7-
# Copyright: (c) 2025 HyperSec Pty Ltd
7+
# Copyright: (c) 2025-2026 HYPERI PTY LIMITED
88

99
name: Release
1010

.golangci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Language: YAML
55
#
66
# License: Apache-2.0
7-
# Copyright: (c) 2025 HyperSec Pty Ltd
7+
# Copyright: (c) 2025-2026 HYPERI PTY LIMITED
88

99
run:
1010
timeout: 5m
@@ -32,7 +32,7 @@ linters-settings:
3232
enable:
3333
- shadow
3434
goimports:
35-
local-prefixes: github.com/hypersec-io/macbash
35+
local-prefixes: github.com/hyperi-io/macbash
3636
misspell:
3737
locale: US
3838
gocritic:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Apache License
22
Version 2.0, January 2004
33
https://www.apache.org/licenses/LICENSE-2.0
44

5-
Copyright (c) 2025 HyperSec Pty Ltd
5+
Copyright (c) 2025-2026 HYPERI PTY LIMITED
66

77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# macbash
22

3-
[![CI](https://github.com/hypersec-io/macbash/actions/workflows/ci.yml/badge.svg)](https://github.com/hypersec-io/macbash/actions/workflows/ci.yml)
4-
[![Go](https://img.shields.io/badge/Go-1.23+-00ADD8?logo=go&logoColor=white)](https://go.dev/)
3+
[![CI](https://github.com/hyperi-io/macbash/actions/workflows/ci.yml/badge.svg)](https://github.com/hyperi-io/macbash/actions/workflows/ci.yml)
4+
[![Go](https://img.shields.io/badge/Go-1.26+-00ADD8?logo=go&logoColor=white)](https://go.dev/)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
66

77
Check and fix bash scripts so they work on macOS.
@@ -11,21 +11,21 @@ Detects GNU/Linux-specific bash constructs that won't work on macOS. Can auto-fi
1111

1212
```bash
1313
# Quick install
14-
curl -fsSL https://raw.githubusercontent.com/hypersec-io/macbash/main/packaging/install.sh | sh
14+
curl -fsSL https://raw.githubusercontent.com/hyperi-io/macbash/main/packaging/install.sh | sh
1515

1616
# Homebrew
17-
brew tap hypersec-io/tools && brew install macbash
17+
brew tap hyperi-io/macbash && brew install macbash
1818

1919
# Debian/Ubuntu
20-
curl -LO https://github.com/hypersec-io/macbash/releases/latest/download/macbash_1.0.0_amd64.deb
21-
sudo dpkg -i macbash_1.0.0_amd64.deb
20+
curl -LO https://github.com/hyperi-io/macbash/releases/latest/download/macbash_amd64.deb
21+
sudo dpkg -i macbash_amd64.deb
2222

2323
# RHEL/Fedora
24-
curl -LO https://github.com/hypersec-io/macbash/releases/latest/download/macbash-1.0.0-1.x86_64.rpm
25-
sudo rpm -i macbash-1.0.0-1.x86_64.rpm
24+
curl -LO https://github.com/hyperi-io/macbash/releases/latest/download/macbash_amd64.rpm
25+
sudo rpm -i macbash_amd64.rpm
2626

2727
# From source
28-
go install github.com/hypersec-io/macbash/cmd/macbash@latest
28+
go install github.com/hyperi-io/macbash/cmd/macbash@latest
2929
```
3030

3131
## Usage
@@ -98,7 +98,7 @@ rules:
9898
```yaml
9999
- name: Check bash portability
100100
run: |
101-
go install github.com/hypersec-io/macbash/cmd/macbash@latest
101+
go install github.com/hyperi-io/macbash/cmd/macbash@latest
102102
macbash scripts/*.sh
103103
```
104104

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Language: YAML (GitHub Actions)
55
#
66
# License: Apache-2.0
7-
# Copyright: (c) 2026 HYPERI PTY LIMITED
7+
# Copyright: (c) 2025-2026 HYPERI PTY LIMITED
88

99
name: 'macbash'
1010
description: 'Check bash scripts for macOS compatibility and auto-fix them for cross-platform portability'

cmd/macbash/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
// Language: Go
55
//
66
// License: Apache-2.0
7-
// Copyright: (c) 2025 HyperSec Pty Ltd
7+
// Copyright: (c) 2025-2026 HYPERI PTY LIMITED
88

99
package main
1010

1111
import (
1212
"fmt"
1313
"os"
1414

15-
"github.com/hypersec-io/macbash/internal/cli"
15+
"github.com/hyperi-io/macbash/internal/cli"
1616
)
1717

1818
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/hypersec-io/macbash
1+
module github.com/hyperi-io/macbash
22

33
go 1.26.0
44

internal/cli/root.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Language: Go
55
//
66
// License: Apache-2.0
7-
// Copyright: (c) 2025 HyperSec Pty Ltd
7+
// Copyright: (c) 2025-2026 HYPERI PTY LIMITED
88

99
package cli
1010

@@ -15,10 +15,10 @@ import (
1515

1616
"github.com/spf13/cobra"
1717

18-
"github.com/hypersec-io/macbash/internal/fixer"
19-
"github.com/hypersec-io/macbash/internal/output"
20-
"github.com/hypersec-io/macbash/internal/rules"
21-
"github.com/hypersec-io/macbash/internal/scanner"
18+
"github.com/hyperi-io/macbash/internal/fixer"
19+
"github.com/hyperi-io/macbash/internal/output"
20+
"github.com/hyperi-io/macbash/internal/rules"
21+
"github.com/hyperi-io/macbash/internal/scanner"
2222
)
2323

2424
var (

internal/fixer/fixer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Language: Go
55
//
66
// License: Apache-2.0
7-
// Copyright: (c) 2025 HyperSec Pty Ltd
7+
// Copyright: (c) 2025-2026 HYPERI PTY LIMITED
88

99
package fixer
1010

@@ -18,7 +18,7 @@ import (
1818

1919
"mvdan.cc/sh/v3/syntax"
2020

21-
"github.com/hypersec-io/macbash/internal/rules"
21+
"github.com/hyperi-io/macbash/internal/rules"
2222
)
2323

2424
type Fixer struct {

0 commit comments

Comments
 (0)