Skip to content

Commit

Permalink
Simplify license
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed Sep 16, 2024
1 parent 394c0b3 commit b7cbff0
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 33 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ for f := range fileListQueue {
}
```

All code is dual-licenced as either MIT or Unlicence.
All code is licenced as MIT.

### Error Handler

Expand Down
24 changes: 0 additions & 24 deletions UNLICENSE

This file was deleted.

2 changes: 1 addition & 1 deletion check.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# SPDX-License-Identifier: MIT OR Unlicense
# SPDX-License-Identifier: MIT

set -e

Expand Down
2 changes: 1 addition & 1 deletion cmd/gocodewalkerexample/main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT OR Unlicense
// SPDX-License-Identifier: MIT

package main

Expand Down
2 changes: 1 addition & 1 deletion cmd/gocodewalkerperformance/main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT OR Unlicense
// SPDX-License-Identifier: MIT

package main

Expand Down
2 changes: 1 addition & 1 deletion file.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// such as walking the file tree obeying .ignore and .gitignore files
// or looking for the root directory assuming already in a git project

// SPDX-License-Identifier: MIT OR Unlicense
// SPDX-License-Identifier: MIT

package gocodewalker

Expand Down
2 changes: 1 addition & 1 deletion file_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT OR Unlicense
// SPDX-License-Identifier: MIT

package gocodewalker

Expand Down
2 changes: 1 addition & 1 deletion gitignore_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT OR Unlicense
// SPDX-License-Identifier: MIT

package gocodewalker

Expand Down
2 changes: 1 addition & 1 deletion hidden.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT OR Unlicense
// SPDX-License-Identifier: MIT
//go:build !windows
// +build !windows

Expand Down
2 changes: 1 addition & 1 deletion hidden_windows.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT OR Unlicense
// SPDX-License-Identifier: MIT
//go:build windows
// +build windows

Expand Down

0 comments on commit b7cbff0

Please sign in to comment.