Intital commit

This commit is contained in:
2023-10-01 19:45:51 +02:00
commit 5c9e67ffaa
9 changed files with 1788 additions and 0 deletions

16
buildDistroBuilder.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
cd "$( cd "$( dirname "$0" )" &> /dev/null && pwd )"
#Get Distrobuilder
git clone https://github.com/lxc/distrobuilder distrobuilderSRC
cd distrobuilderSRC
#Apply patch
git apply ../DisableArchitectureMapping.patch
#Run Build for Build
gofmt -s -w .
go build -o ../ -v ./...
rm -rf distrobuilderSRC
mkdir out