license: embed license in executable
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
parent
09507a541b
commit
7e6eb82195
7
cli.go
7
cli.go
|
@ -25,10 +25,9 @@ func init() {
|
|||
}
|
||||
|
||||
func copyArgs() {
|
||||
if printVersion {
|
||||
fmt.Println(Version)
|
||||
os.Exit(0)
|
||||
}
|
||||
tryLauncher()
|
||||
tryVersion()
|
||||
tryLicense()
|
||||
|
||||
command = flag.Args()
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
packages = [
|
||||
(buildGoModule rec {
|
||||
pname = "ego";
|
||||
version = "flake";
|
||||
version = "0.0.0-flake";
|
||||
|
||||
src = ./.;
|
||||
vendorHash = null; # we have no dependencies :3
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
"flag"
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
var (
|
||||
//go:embed LICENSE
|
||||
license string
|
||||
|
||||
printLicense bool
|
||||
)
|
||||
|
||||
func init() {
|
||||
flag.BoolVar(&printLicense, "license", false, "Print license")
|
||||
}
|
||||
|
||||
func tryLicense() {
|
||||
if printLicense {
|
||||
fmt.Println(license)
|
||||
os.Exit(0)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue