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