We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The readme says:
## Rebuild without blowing away local data 1. make stop 2. make clean 3. make build 4. make run
But the makefile doesn't content the clean target. It does clean-data and clean-images, so I suppose that make clean should be make clean-data.
clean
clean-data
clean-images
make clean
make clean-data
Also:
## Rebuild AND blow away local data 1. make stop 2. make clean-data 3. make build 4. make run
That I suppose should be make clean-images instead of make clean-data.
make clean-images
The text was updated successfully, but these errors were encountered:
Ah Good catch, I'll get this fixed asap.
Sorry, something went wrong.
No branches or pull requests
The readme says:
But the makefile doesn't content the
clean
target. It doesclean-data
andclean-images
, so I suppose thatmake clean
should bemake clean-data
.Also:
That I suppose should be
make clean-images
instead ofmake clean-data
.The text was updated successfully, but these errors were encountered: