Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IT-Cru/3a396e1c911d74d7f660193c28c52f22 to your computer and use it in GitHub Desktop.
Save IT-Cru/3a396e1c911d74d7f660193c28c52f22 to your computer and use it in GitHub Desktop.
Add nimbus-force-uuid drush command to burdamagazinorg/robo
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