Skip to content

Commit

Permalink
added copyright to all files
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanisham committed Feb 12, 2024
1 parent 1be9e41 commit c7577eb
Show file tree
Hide file tree
Showing 17 changed files with 70 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#!/usr/bin/env -S deno run -A

// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

import { Tar } from "https://deno.land/[email protected]/archive/mod.ts";
import { copy } from "https://deno.land/[email protected]/streams/copy.ts";

Expand Down
4 changes: 4 additions & 0 deletions cli/clean.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/config.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/error.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/fileperms_linux.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
//go:build linux

// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
5 changes: 5 additions & 0 deletions cli/fileperms_win.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
//go:build !linux

// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import "os"
Expand Down
4 changes: 4 additions & 0 deletions cli/install.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/install_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/ls.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/meta/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package meta

const VERSION = "v0.5.4"
Expand Down
4 changes: 4 additions & 0 deletions cli/settings.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/sync.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/uninstall.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/upgrade.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/use.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions cli/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package cli

import (
Expand Down
4 changes: 4 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2022 Tristan Isham. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.

package main

import (
Expand Down

0 comments on commit c7577eb

Please sign in to comment.