Skip to content

Commit

Permalink
Fix unit name
Browse files Browse the repository at this point in the history
  • Loading branch information
freimair committed Apr 1, 2020
1 parent 0b0aee7 commit 862ded2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pricenode/journalscraper_hsversion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ while true;
do
now=$(date +"%F %T")

journalctl -u pricenode --since="$last" --until="$now" | grep -Eo "getAllMarketPrices.*HSv[0-9]" | grep -o "HSv[0-9]" | sort | uniq -c | while read -r line; do
journalctl -u bisq-pricenode --since="$last" --until="$now" | grep -Eo "getAllMarketPrices.*HSv[0-9]" | grep -o "HSv[0-9]" | sort | uniq -c | while read -r line; do
number=$(echo "${line}" | cut -d ' ' -f 1);
version=$(echo "${line}" | cut -d \ -f 2);
version=${version//./_};
Expand Down

0 comments on commit 862ded2

Please sign in to comment.