Skip to content

Commit

Permalink
Quieter asset download
Browse files Browse the repository at this point in the history
  • Loading branch information
SmilyOrg committed Oct 9, 2023
1 parent f6fe34b commit 024db85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ assets:
mkdir -p data/geo
gpkg_file="$(grep -e '//go:embed data/geo/' embed-geo.go | cut -d / -f 5)" && \
gpkg_ver="$(grep -e '// tinygpkg-data release:' embed-geo.go | cut -d ' ' -f 4)" && \
gpkg_dst="data/geo/$gpkg_file" && \
echo "Downloading $gpkg_ver/$gpkg_file" && \
wget -O data/geo/$gpkg_file https://github.com/SmilyOrg/tinygpkg-data/releases/download/$gpkg_ver/$gpkg_file
wget -q -O "$gpkg_dst" https://github.com/SmilyOrg/tinygpkg-data/releases/download/$gpkg_ver/$gpkg_file && \
echo "Downloaded to $gpkg_dst"

release-local:
goreleaser release --snapshot --clean
Expand Down

0 comments on commit 024db85

Please sign in to comment.