I hereby claim:
- I am pendashteh on github.
- I am pendashteh (https://keybase.io/pendashteh) on keybase.
- I have a public key ASCC7DsKnQpBrAh1pMzY-ZPNxq-wS65iIggz8-O5H1s1Zgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
diff --git a/docroot/core/lib/Drupal/Core/Composer/Composer.php b/docroot/core/lib/Drupal/Core/Composer/Composer.php | |
index 0d5b6aa..b31741a 100644 | |
--- a/docroot/core/lib/Drupal/Core/Composer/Composer.php | |
+++ b/docroot/core/lib/Drupal/Core/Composer/Composer.php | |
@@ -20,7 +20,7 @@ | |
class Composer { | |
protected static $packageToCleanup = [ | |
- 'behat/mink' => ['tests', 'driver-testsuite'], | |
+ 'behat/mink' => ['driver-testsuite'], |
#!/bin/sh | |
# Usage: list-vars.sh [regex_filter] | |
[ "$1" ] && filter=$1 || filter=".*" | |
vars=($(compgen -A variable | grep $filter)) | |
for var in ${vars[@]} | |
do | |
eval "echo $var=\$$var" | |
done |
development: | |
path: ~/www |
#!/bin/bash | |
root=$1 | |
# See: https://www.drupal.org/node/2625224 | |
# Copyright: https://www.virtualmin.com/node/24753#comment-111132 | |
find $root -name ".htaccess" -type f -exec sed -i '' 's/FollowSymLinks/SymLinksIfOwnerMatch/g' {} ";" |
#!/bin/sh | |
echo "This will setup keypair-authentication so you would not need password to connect to server anymore" | |
# ssh_alias="" | |
echo "SSH alias?"; read ssh_alias | |
# ssh_user="root" | |
echo "Username?"; read ssh_user | |
# ssh_server="" |