From c7577ebe553df44c13ae957fd3607b44f28eaf82 Mon Sep 17 00:00:00 2001 From: Tristan Isham Date: Mon, 12 Feb 2024 17:07:18 -0500 Subject: [PATCH] added copyright to all files --- build.ts | 5 +++++ cli/clean.go | 4 ++++ cli/config.go | 4 ++++ cli/error.go | 4 ++++ cli/fileperms_linux.go | 4 ++++ cli/fileperms_win.go | 5 +++++ cli/install.go | 4 ++++ cli/install_test.go | 4 ++++ cli/ls.go | 4 ++++ cli/meta/version.go | 4 ++++ cli/settings.go | 4 ++++ cli/sync.go | 4 ++++ cli/uninstall.go | 4 ++++ cli/upgrade.go | 4 ++++ cli/use.go | 4 ++++ cli/version.go | 4 ++++ main.go | 4 ++++ 17 files changed, 70 insertions(+) diff --git a/build.ts b/build.ts index 36ca615..4353cb3 100755 --- a/build.ts +++ b/build.ts @@ -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/std@0.184.0/archive/mod.ts"; import { copy } from "https://deno.land/std@0.184.0/streams/copy.ts"; diff --git a/cli/clean.go b/cli/clean.go index 3519f11..ec8ba28 100644 --- a/cli/clean.go +++ b/cli/clean.go @@ -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 ( diff --git a/cli/config.go b/cli/config.go index 0a3f4d0..0ffe7d7 100644 --- a/cli/config.go +++ b/cli/config.go @@ -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 ( diff --git a/cli/error.go b/cli/error.go index 1505376..dac85c9 100644 --- a/cli/error.go +++ b/cli/error.go @@ -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 ( diff --git a/cli/fileperms_linux.go b/cli/fileperms_linux.go index 2d24f07..274294b 100644 --- a/cli/fileperms_linux.go +++ b/cli/fileperms_linux.go @@ -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 ( diff --git a/cli/fileperms_win.go b/cli/fileperms_win.go index b30d949..d607761 100644 --- a/cli/fileperms_win.go +++ b/cli/fileperms_win.go @@ -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" diff --git a/cli/install.go b/cli/install.go index b44c67e..fe30d78 100644 --- a/cli/install.go +++ b/cli/install.go @@ -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 ( diff --git a/cli/install_test.go b/cli/install_test.go index 7c61b70..9889a53 100644 --- a/cli/install_test.go +++ b/cli/install_test.go @@ -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 ( diff --git a/cli/ls.go b/cli/ls.go index c4570e4..8ea7615 100644 --- a/cli/ls.go +++ b/cli/ls.go @@ -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 ( diff --git a/cli/meta/version.go b/cli/meta/version.go index e9e371d..057e559 100644 --- a/cli/meta/version.go +++ b/cli/meta/version.go @@ -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" diff --git a/cli/settings.go b/cli/settings.go index 43a2b4a..0c9c298 100644 --- a/cli/settings.go +++ b/cli/settings.go @@ -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 ( diff --git a/cli/sync.go b/cli/sync.go index 290ed17..30deb65 100644 --- a/cli/sync.go +++ b/cli/sync.go @@ -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 ( diff --git a/cli/uninstall.go b/cli/uninstall.go index aad1092..d5074ad 100644 --- a/cli/uninstall.go +++ b/cli/uninstall.go @@ -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 ( diff --git a/cli/upgrade.go b/cli/upgrade.go index 5d1acab..98a07bc 100644 --- a/cli/upgrade.go +++ b/cli/upgrade.go @@ -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 ( diff --git a/cli/use.go b/cli/use.go index f71e9a3..9f84513 100644 --- a/cli/use.go +++ b/cli/use.go @@ -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 ( diff --git a/cli/version.go b/cli/version.go index cd83c77..3702f4e 100644 --- a/cli/version.go +++ b/cli/version.go @@ -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 ( diff --git a/main.go b/main.go index 0f47601..5c4fac0 100644 --- a/main.go +++ b/main.go @@ -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 (