Browse Source

Add binary to ignored files and add symlinks to manifest

feature/create-install-pkgs
Tovi Jaeschke-Rogers 3 years ago
parent
commit
7c3d0dd9f5
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      Client/Package/Manifest.go
  2. +1
    -0
      Variables/Variables.go

+ 1
- 0
Client/Package/Manifest.go View File

@ -7,6 +7,7 @@ import (
type Manifest struct {
Name string `yaml:"name"`
Version string `yaml:"version"`
Symlinks map[string]string `yaml:"symlinks,flow"`
Dependancies map[string]string `yaml:"dependancies,flow"`
}


+ 1
- 0
Variables/Variables.go View File

@ -56,6 +56,7 @@ var (
}
IgnoreRegexPaths []string = []string{
os.Args[0],
"^/swapfile$",
"^/etc/passwd$",
"^/etc/passwd-$",


Loading…
Cancel
Save