We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8d2d9f commit ce8453dCopy full SHA for ce8453d
1 file changed
uceap-drupal-dev-update-content
@@ -1,6 +1,11 @@
1
#!/bin/bash
2
set -eo pipefail
3
4
+# during first run, the new PATH from the on-create script is not yet in effect
5
+if ( ! command -v drush > /dev/null ); then
6
+ export PATH="`pwd`/vendor/bin:$PATH"
7
+fi
8
+
9
# we need to preserve gitconfig if it already exists
10
if [ -f ~/.gitconfig ]; then
11
gitconfig_existed=true
0 commit comments