Skip to content

Commit

Permalink
Bump ghost to v4.47.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wyzlle committed May 18, 2022
1 parent 4f32a10 commit 0da23a0
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 118 deletions.
5 changes: 3 additions & 2 deletions bin/create-config
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var fs = require("fs");
var path = require("path");

var appRoot = path.join(__dirname, "..");

var contentPath = path.join(appRoot, "/content/");
function createConfig() {
var fileStorage, storage;

Expand Down Expand Up @@ -75,7 +75,7 @@ function createConfig() {
port: process.env.PORT,
},
paths: {
contentPath: path.join(appRoot, "/content/"),
contentPath: contentPath,
},
};

Expand All @@ -84,3 +84,4 @@ function createConfig() {

var configContents = JSON.stringify(createConfig(), null, 2);
fs.writeFileSync(path.join(appRoot, "config.production.json"), configContents);
fs.mkdirSync(path.join(contentPath, "/data/"), { recursive: true });
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ghost",
"version": "4.47.2",
"version": "4.47.4",
"description": "Deploy Ghost v4 on Railway",
"main": "index.js",
"author": "farazpatankar",
Expand All @@ -10,7 +10,7 @@
},
"dependencies": {
"casper": "github:TryGhost/Casper#main",
"ghost": "4.47.2",
"ghost": "4.47.4",
"ghost-storage-cloudinary": "2.2.1",
"lyra": "github:TryGhost/lyra#main",
"mysql2": "2.3.3"
Expand Down
Loading

0 comments on commit 0da23a0

Please sign in to comment.