Skip to content

Commit faed610

Browse files
committed
Add build script and add the builds folder to .gitignore
1 parent 5c75b61 commit faed610

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ config.yml
66
ArchLinuxInstaller
77
pacman.conf
88
.viminfo
9+
builds

build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
export GOARCH=arm64
4+
go build -o builds/arm64/ArchInstaller-arm64 .
5+
export GOARCH=amd64
6+
go build -o builds/amd64/ArchInstaller-amd64 .

0 commit comments

Comments
 (0)