Created
May 24, 2017 08:42
-
-
Save IT-Cru/3a396e1c911d74d7f660193c28c52f22 to your computer and use it in GitHub Desktop.
Add nimbus-force-uuid drush command to burdamagazinorg/robo
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
diff --git a/Task/Drush/NimbusForceUuid.php b/Task/Drush/NimbusForceUuid.php | |
new file mode 100644 | |
index 0000000..0e3fbe1 | |
--- /dev/null | |
+++ b/Task/Drush/NimbusForceUuid.php | |
@@ -0,0 +1,20 @@ | |
+<?php | |
+ | |
+namespace Thunder\Robo\Task\Drush; | |
+ | |
+/** | |
+ * Robo task: Nimbus force UUIDs. | |
+ */ | |
+class NimbusForceUuid extends DrushTask { | |
+ | |
+ /** | |
+ * {@inheritdoc} | |
+ */ | |
+ public function run() { | |
+ return $this->exec() | |
+ ->arg('nimbus-force-uuid') | |
+ ->option('yes') | |
+ ->run(); | |
+ } | |
+ | |
+} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment