Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-operations
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal
paas
drupal-operations
Merge requests
!9
Move scripts to drupal-runtime
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Move scripts to drupal-runtime
move-scripts
into
master
Overview
0
Commits
1
Pipelines
1
Changes
8
Merged
Konstantinos Samaras-Tsakiris
requested to merge
move-scripts
into
master
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
8
Expand
Merge only
after
drupal-runtime!22 (merged)
Edited
3 years ago
by
Konstantinos Samaras-Tsakiris
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
bb17a711
1 commit,
3 years ago
8 files
+
0
−
86
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
scripts/check-if-installed.sh deleted
100755 → 0
+
0
−
16
Options
#!/bin/sh
set
-exu
# Change working directory to the drupal code
cd
/app
# Check if Drupal site is installed
echo
"Checking if Drupal site is installed"
drush status bootstrap |
grep
-q
Successful
# Make sure we get a successful response
if
[
$?
-ne
0]
;
then
echo
"Drupal is not installed"
>
&2
exit
1
fi
exit
0
Loading