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

Commit 1c454e0

Browse files
Mosnarjasonmccallister
authored andcommitted
Fixed manifest path closes #8 Thanks @juliencharette (#9)
* Fixed manifest path closes #8 Thanks @juliencharette * Update version number and release notes
1 parent 4349534 commit 1c454e0

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

ElixirPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function getDescription()
3131
*/
3232
public function getVersion()
3333
{
34-
return '1.0.6';
34+
return '1.0.7';
3535
}
3636

3737
/**

releases.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,14 @@
6262
"notes": [
6363
"[Fixed] Versioning with Craft and Github."
6464
]
65+
},
66+
{
67+
"version": "1.0.7",
68+
"downloadUrl": "https://github.com/venveo/craft-elixir/archive/v1.0.7.zip",
69+
"date": "2016-12-30 11:00:00",
70+
"notes": [
71+
"[Fixed] Issue with manifest file.",
72+
"Happy New Year!"
73+
]
6574
}
6675
]

services/ElixirService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function __construct()
2727
$settings = craft()->plugins->getPlugin('elixir')->getSettings();
2828
$this->buildPath = $settings->buildPath;
2929
$this->publicPath = $settings->publicPath;
30-
$this->manifest = CRAFT_BASE_PATH . $this->publicPath . '/' . $this->buildPath . '/rev-manifest.json';
30+
$this->manifest = dirname(CRAFT_BASE_PATH) . '/' . $this->publicPath . '/' . $this->buildPath . '/rev-manifest.json';
3131
}
3232

3333
/**

0 commit comments

Comments
 (0)