From e1556c3e5ae9a709919a1db0ffad70320f17a4a0 Mon Sep 17 00:00:00 2001 From: liushuyu Date: Tue, 11 May 2021 18:22:59 -0600 Subject: [PATCH] scripts: fix submodule path --- .gitmodules | 6 +++--- gulpfile.js | 4 ++-- scripts => scripts/shared-hugo-scripts | 0 3 files changed, 5 insertions(+), 5 deletions(-) rename scripts => scripts/shared-hugo-scripts (100%) diff --git a/.gitmodules b/.gitmodules index 7c071ad..10d7fe6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "scripts"] - path = scripts - url = https://github.com/yuzu-emu/shared-hugo-scripts +[submodule "scripts/shared-hugo-scripts"] + path = scripts/shared-hugo-scripts + url = https://github.com/yuzu-emu/shared-hugo-scripts.git diff --git a/gulpfile.js b/gulpfile.js index 4742165..b6dc62f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -13,13 +13,13 @@ const concat = require('gulp-concat'); const imageResize = require('gulp-image-resize'); gulp.task('scripts:games', function (callback) { - exec('yarn install && node app.js', { cwd: './scripts/compatdb/' }, function (err, stdout, stderr) { + exec('yarn install && node app.js', { cwd: './scripts/shared-hugo-scripts/compatdb/' }, function (err, stdout, stderr) { callback(err); }); }); gulp.task('scripts:wiki', function (callback) { - exec('yarn install && node app.js', { cwd: './scripts/wiki/' }, function (err, stdout, stderr) { + exec('yarn install && node app.js', { cwd: './scripts/shared-hugo-scripts/wiki/' }, function (err, stdout, stderr) { callback(err); }); }); diff --git a/scripts b/scripts/shared-hugo-scripts similarity index 100% rename from scripts rename to scripts/shared-hugo-scripts