-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
...drupal/drupalpod-setup/install_modules.sh → .../drupalpod-setup/contrib_modules_setup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
#!/usr/bin/env bash | ||
set -eu -o pipefail | ||
|
||
# Set a default setup if project type wasn't specified | ||
if [ -z "$DP_PROJECT_TYPE" ]; then | ||
export DP_INSTALL_PROFILE='demo_umami' | ||
export DP_PROJECT_TYPE='project_core' | ||
export DP_PROJECT_NAME="drupal" | ||
export DP_CORE_VERSION='10.2.5' | ||
export DP_EXTRA_DEVEL=1 | ||
export DP_EXTRA_ADMIN_TOOLBAR=1 | ||
fi | ||
# Set a default setup (when project type is not specified) | ||
export DP_INSTALL_PROFILE='demo_umami' | ||
export DP_PROJECT_TYPE='project_core' | ||
export DP_PROJECT_NAME="drupal" | ||
export DP_CORE_VERSION='10.2.5' | ||
export DP_EXTRA_DEVEL=1 | ||
export DP_EXTRA_ADMIN_TOOLBAR=1 |