Skip to content

Commit

Permalink
fix(lando-entrypoint): Due to script mounting changes the fallback of
Browse files Browse the repository at this point in the history
executing all scripts in the entrypoint didnt run all scripts anymore
  • Loading branch information
florianPat committed Feb 17, 2025
1 parent 143bf74 commit fbeb2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lando-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if [ -d "/scripts" ] && [ -z ${LANDO_NO_SCRIPTS+x} ]; then

# Keep this for backwards compat and fallback opts
chmod +x /scripts/* || true
find /scripts/ -type f -name "*.sh" -exec {} \;
find /scripts/ -type f \( -name "*.sh" -o ! -name "*.*" \) -exec {} \;
fi;

# Run any bash scripts that we've loaded into the mix for autorun unless we've
Expand Down

0 comments on commit fbeb2a3

Please sign in to comment.