Skip to content

Commit

Permalink
wp symlink not valid when built on Windows (testing only) (ddev#1954)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Jan 15, 2020
1 parent 6246c49 commit 47c2f0e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion containers/ddev-webserver/Dockerfile
Expand Up @@ -109,7 +109,7 @@ RUN composer global require hirak/prestissimo
RUN curl -sSL "https://github.com/drush-ops/drush/releases/download/${DRUSH_VERSION}/drush.phar" -o /usr/local/bin/drush8 && chmod +x /usr/local/bin/drush8
RUN curl -sSL "https://github.com/drush-ops/drush-launcher/releases/download/${DRUSH_LAUNCHER_VERSION}/drush.phar" -o /usr/local/bin/drush && chmod +x /usr/local/bin/drush
RUN curl -sSL "https://github.com/mailhog/MailHog/releases/download/v${MAILHOG_VERSION}/MailHog_linux_amd64" -o /usr/local/bin/mailhog
RUN curl -sSL -o /usr/local/bin/wp-cli -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x /usr/local/bin/wp-cli
RUN curl -sSL -o /usr/local/bin/wp-cli -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x /usr/local/bin/wp-cli && ln -s /usr/local/bin/wp-cli /usr/local/bin/wp

RUN curl -sSL "https://drupalconsole.com/installer" -L -o /usr/local/bin/drupal && chmod +x /usr/local/bin/drupal

Expand Down
1 change: 0 additions & 1 deletion containers/ddev-webserver/files/usr/local/bin/wp

This file was deleted.

2 changes: 1 addition & 1 deletion pkg/version/version.go
Expand Up @@ -49,7 +49,7 @@ var DockerComposeFileFormatVersion = "3.6"
var WebImg = "drud/ddev-webserver"

// WebTag defines the default web image tag for drud dev
var WebTag = "20191113_jdoubleu_wp_cli" // Note that this can be overridden by make
var WebTag = "20191117_symlink_wp" // Note that this can be overridden by make

// DBImg defines the default db image used for applications.
var DBImg = "drud/ddev-dbserver"
Expand Down

0 comments on commit 47c2f0e

Please sign in to comment.