Skip to content

Commit

Permalink
upd: .gitignore & build command updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
ramazansancar committed Apr 14, 2024
1 parent 3015d53 commit 8f82bae
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Build file for the wedl project
*.exe
wedl
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ Options:
## Instaling
Download binaries from [here](https://github.com/gnojus/wedl/releases).
Download binaries from [releases](https://github.com/gnojus/wedl/releases).
Or compile from source and install with the [Go toolchain](https://go.dev/dl/):
```bash
go install github.com/gnojus/wedl@latest
```
### Linux and MacOS
Expand All @@ -38,13 +44,7 @@ Or compile from source:
```bash
git clone https://github.com/gnojus/wedl.git
cd wedl
make
```
Or just go get:
```bash
go get github.com/gnojus/wedl
go build
```
### Windows
Expand All @@ -56,10 +56,14 @@ git clone https://github.com/gnojus/wedl.git
cd wedl
go mod download

# Build executable
# Build

## Build executable
go build

# Build with -output flag
---------

## Or Build with -output flag
go build -o wedl.exe wedl.go
```
Expand Down

0 comments on commit 8f82bae

Please sign in to comment.