Fixed a typo in track importing instructions
This commit is contained in:
parent
4f5f383968
commit
e9b2870e07
|
@ -5,7 +5,6 @@ set -e
|
||||||
echo "This will download tracks from zip archives listed in $1"
|
echo "This will download tracks from zip archives listed in $1"
|
||||||
|
|
||||||
LIST_CONTENT=$(cat $1)
|
LIST_CONTENT=$(cat $1)
|
||||||
echo "$LIST_CONTENT"
|
|
||||||
mkdir -p data/music
|
mkdir -p data/music
|
||||||
cd data/music
|
cd data/music
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ least an ``artist``, ``album`` and ``title`` tag, you can import those tracks as
|
||||||
|
|
||||||
.. code-block:: bash
|
.. 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::
|
.. note::
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue