Skip to content
Snippets Groups Projects
drush 234 B
#!/bin/sh

function setPermissions {
  chmod -R g+w .
}

docker-compose exec ${LAKEDROPS_DEV_DC_OPTIONS} --user root php drush $@

if [[ "$1" == "gen" ]]; then
  setPermissions
fi
if [[ "$1" == "generate" ]]; then
  setPermissions
fi