I have a bash script which I use to zip everything in a folder called "distribution" which contains "file1" and "file2":
zip -r archive.zip distribution/*
However, when I open the zip file I see the entire "distribution" folder has been zipped. I just want to zip the files within the distribution folder and not the entire folder itself. How do I do this?