Closed westhecool closed 8 months ago
The code cp firmware* compiled-firmware/ attempts to copy the directory "firmware" to the directory "compiled-firmware" but the recursive flag is not specified. So instead I changed it to copy the contents of the directory to the other directory.
cp firmware* compiled-firmware/
The code
cp firmware* compiled-firmware/
attempts to copy the directory "firmware" to the directory "compiled-firmware" but the recursive flag is not specified. So instead I changed it to copy the contents of the directory to the other directory.