We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cda41a commit 9d3235bCopy full SHA for 9d3235b
scripts/install_drupal.sh
@@ -22,13 +22,13 @@ fi
22
wget https://www.drupal.org/download-latest/tar.gz -O drupal.tar.gz
23
24
if [[ $use_shared_storage == "true" ]]; then
25
- tar zxvf tar.gz --directory ${drupal_shared_working_dir}
+ tar zxvf drupal.tar.gz --directory ${drupal_shared_working_dir}
26
cp -r ${drupal_shared_working_dir}/drupal-*/* ${drupal_shared_working_dir}
27
rm -rf ${drupal_shared_working_dir}/drupal-*
28
cp ${drupal_shared_working_dir}/sites/default/default.settings.php sites/default/settings.php
29
else
30
- tar zxvf tar.gz
31
- rm -rf html/ tar.gz
+ tar zxvf drupal.tar.gz
+ rm -rf html/ drupal.tar.gz
32
mv drupal-* html
33
cd html
34
cp sites/default/default.settings.php sites/default/settings.php
0 commit comments