Skip to content

Commit

Permalink
Fix ARP_STRS_JOINED in config file
Browse files Browse the repository at this point in the history
  • Loading branch information
aceberg committed Sep 8, 2024
1 parent b646fb7 commit ee850d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/binary-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
go-version: 'stable'
- run: go version

- uses: goreleaser/goreleaser-action@v5
- uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## [v2.0.3] - 2024-09-
### Fixed
- `ARP_STRS_JOINED` should be empty in config file

## [v2.0.2] - 2024-09-07
### Added
- Remember Refresh setting in browser [#123](https://github.com/aceberg/WatchYourLAN/issues/123)
Expand Down
1 change: 1 addition & 0 deletions internal/conf/getconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ func Write(config models.Conf) {
viper.Set("LOG_LEVEL", config.LogLevel)
viper.Set("ARP_ARGS", config.ArpArgs)
viper.Set("ARP_STRS", config.ArpStrs)
viper.Set("ARP_STRS_JOINED", "") // Can be set only with ENV
viper.Set("IFACES", config.Ifaces)
viper.Set("TIMEOUT", config.Timeout)
viper.Set("TRIM_HIST", config.TrimHist)
Expand Down

0 comments on commit ee850d2

Please sign in to comment.