diff --git a/fancybox.drush.inc b/fancybox.drush.inc
index 4ecf7f9..429dcf4 100644
--- a/fancybox.drush.inc
+++ b/fancybox.drush.inc
@@ -48,7 +48,7 @@ function fancybox_drush_command() {
 function fancybox_drush_download() {
   $args = func_get_args();
 
-  $path = $args[0] ?: drush_get_context('DRUSH_DRUPAL_ROOT') . '/sites/all/libraries/fancybox';
+  $path = $args[0] ? $args[0] : drush_get_context('DRUSH_DRUPAL_ROOT') . '/sites/all/libraries/fancybox';
   $cmd = 'git clone https://github.com/fancyapps/fancyBox.git ' . $path;
 
   if (drush_shell_exec($cmd)) {
