- Replace bash with sh for script execution to work with docker:dind image
- Add bash installation to prepare step for script compatibility
- Keep chmod +x for ensuring script permissions
- All scripts now use sh interpreter which is available by default
This resolves '/bin/sh: bash: not found' errors in Drone CI pipeline
- Replace ./scripts/ci/*.sh with bash scripts/ci/*.sh for better compatibility
- Add chmod +x before script execution to ensure permissions
- Add debugging info showing current directory and file permissions
- This should resolve the 'script not found' error even when files exist
The issue was that ./script.sh requires the script to be in PATH or current dir
with execute permissions, while bash script.sh explicitly invokes bash interpreter"
s