Incorrect tree structure after manual installation

I followed the MacOS command line installation instructions at docs.nordicsemi.com/.../install_ncs.html

After running `west update`, it says the tree structure should be:

ncs
├─── toolchains
│  └─── <toolchain-installation>
└─── <west-workspace>
   ├─── .west
   ├─── bootloader
   ├─── modules
   ├─── nrf
   ├─── nrfxlib
   ├─── zephyr
   └─── ...

However, mine is:

ncs
├── .west
├── bootloader
├── downloads
├── modules
├── nrf
├── nrfxlib
├── test
├── tmp
├── toolchains
├── tools
└── zephyr

Did I have to create a `v2.7.0` directory and move to it before running the west init and update commands?

Related