summaryrefslogtreecommitdiffstats
path: root/clerk
diff options
context:
space:
mode:
authorRasmus Steinke <rasi@xssn.at>2014-10-04 10:32:08 +0200
committerRasmus Steinke <rasi@xssn.at>2014-10-04 10:32:08 +0200
commit1c3a0f2df2bb97ee2cce9dfb7d375d13c72819d7 (patch)
treed4487939374e60bc9e02d427e0ed56e98dd4a3b6 /clerk
parentc848dd9f2e98f5748878265b3bf043a403e25aa4 (diff)
downloadperl-app-clerk-1c3a0f2df2bb97ee2cce9dfb7d375d13c72819d7.tar.gz
perl-app-clerk-1c3a0f2df2bb97ee2cce9dfb7d375d13c72819d7.tar.xz
small fix for artist display
Diffstat (limited to 'clerk')
-rwxr-xr-xclerk2
1 files changed, 1 insertions, 1 deletions
diff --git a/clerk b/clerk
index eddc6f4..00660fa 100755
--- a/clerk
+++ b/clerk
@@ -164,7 +164,7 @@ updateDB () {
sqlite3 ../ratings.db < /usr/share/doc/clerk/create_rating.sql
fi
for line in *.ratings; do
- albumartist=$(grep "^albumartist=" "$line" | cut -d '=' -f2- )
+ artist=$(grep "^albumartist=" "$line" | cut -d '=' -f2- )
date=$(grep "^date=" "$line" | cut -d '=' -f2-)
album=$(grep "^album=" "$line" | cut -d '=' -f2-)
rating_split=$(grep "album_rating=" "$line" | cut -d "=" -f2)