From e9b2870e077e2d95bbb59e02ed8964074ad75a1d Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Sun, 25 Jun 2017 23:39:18 +0200 Subject: [PATCH] Fixed a typo in track importing instructions --- demo/download-tracks.sh | 1 - docs/importing-music.rst | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/demo/download-tracks.sh b/demo/download-tracks.sh index 6eb58ee0c..448b44592 100755 --- a/demo/download-tracks.sh +++ b/demo/download-tracks.sh @@ -5,7 +5,6 @@ set -e echo "This will download tracks from zip archives listed in $1" LIST_CONTENT=$(cat $1) -echo "$LIST_CONTENT" mkdir -p data/music cd data/music diff --git a/docs/importing-music.rst b/docs/importing-music.rst index 15db0756b..29f33ffc7 100644 --- a/docs/importing-music.rst +++ b/docs/importing-music.rst @@ -12,7 +12,7 @@ least an ``artist``, ``album`` and ``title`` tag, you can import those tracks as .. code-block:: bash - docker-compose --rm run api python manage.py import_files "/music/**/*.ogg" --recursive --noinput + docker-compose run --rm api python manage.py import_files "/music/**/*.ogg" --recursive --noinput .. note:: -- GitLab