Skip to content

Instantly share code, notes, and snippets.

@obense
Created December 13, 2016 11:22
Show Gist options
  • Save obense/8eac88a2148e80c614317a1f4327a7bc to your computer and use it in GitHub Desktop.
Save obense/8eac88a2148e80c614317a1f4327a7bc to your computer and use it in GitHub Desktop.
script pour exec la console de sf2/3
#!/bin/bash
if [ -a app/console ]; then
exec "app/console" "$@"
fi
if [ -a bin/console ]; then
exec "bin/console" "$@"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment