I have two files for deployment,
1) deploymentpackage.zip -> It contains the database package with few shell scripts.
2) deployment.sh -> It is the primary shell script which first unzips the deploymentpackage.zip and then execute the list of shell files inside it.
It is working as expected.
But what I need is, I need to make the zip file as executable so that I dont want to deliver both deploymentpackage.zip and deployment.sh to client.
So Is it possible to make the deploymentpackage.zip as executable so that I don't want to have another script deployment.sh.
Expectation : Running this deploymentpackage.zip should unzip the same file and run the list of scripts inside it.