From 15ffe3e24c2d1c518d9b554edefd65042b9edc26 Mon Sep 17 00:00:00 2001 From: MARICHAL Emmanuel Date: Mon, 10 Oct 2016 17:20:38 +0200 Subject: [PATCH] Fix API url --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9dbafff..e21fa9c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -115,7 +115,7 @@ gulp.task('watch', function () { // Download translations gulp.task('langs:dl', ['langs:clean'], function () { ['en', 'fr', 'es'].forEach(function(lang) { - download('http://addons.prestashop.com/request/1/contributor/dependencies/6c7a3d34fa01934e71f53aae16f2698b/'+lang) + download('http://api.addons.prestashop.com/1/contributor/dependencies/6c7a3d34fa01934e71f53aae16f2698b/'+lang) .pipe(buffer()) .pipe(rename("lang.json")) .pipe(gulp.dest('langs/'+lang+'/'));