Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 3b3f541

Browse files
committed
Merge pull request #38 from webbj74/composer-1.0.0-alpha8
Composer 1.0.0 alpha8
2 parents 5d55625 + 50f1f60 commit 3b3f541

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

manifests/composer.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
require php
99

1010
exec { 'download-php-composer':
11-
command => "curl -sS -o ${php::config::root}/bin/composer http://getcomposer.org/download/1.0.0-alpha7/composer.phar",
12-
unless => "[ -f ${php::config::root}/bin/composer ] && [ \"`md5 -q ${php::config::root}/bin/composer`\" = \"ef51599395560988ea3e16912bfd70f8\" ]",
11+
command => "curl -sS -o ${php::config::root}/bin/composer https://getcomposer.org/download/1.0.0-alpha8/composer.phar",
12+
unless => "[ -f ${php::config::root}/bin/composer ] && [ \"`md5 -q ${php::config::root}/bin/composer`\" = \"df1001975035f07d09307bf1f1e62584\" ]",
1313
cwd => $php::config::root,
1414
require => Exec['phpenv-setup-root-repo']
1515
} ->

spec/classes/php_composer_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
should include_class("php")
88

99
should contain_exec("download-php-composer").with({
10-
:command => "curl -sS -o /test/boxen/phpenv/bin/composer http://getcomposer.org/download/1.0.0-alpha7/composer.phar",
11-
:unless => "[ -f /test/boxen/phpenv/bin/composer ] && [ \"`md5 -q /test/boxen/phpenv/bin/composer`\" = \"ef51599395560988ea3e16912bfd70f8\" ]",
10+
:command => "curl -sS -o /test/boxen/phpenv/bin/composer https://getcomposer.org/download/1.0.0-alpha8/composer.phar",
11+
:unless => "[ -f /test/boxen/phpenv/bin/composer ] && [ \"`md5 -q /test/boxen/phpenv/bin/composer`\" = \"df1001975035f07d09307bf1f1e62584\" ]",
1212
:cwd => "/test/boxen/phpenv",
1313
:require => "Exec[phpenv-setup-root-repo]"
1414
})

0 commit comments

Comments
 (0)