scripts: fix submodule path
This commit is contained in:
parent
a8d0983cb4
commit
e1556c3e5a
|
@ -1,3 +1,3 @@
|
||||||
[submodule "scripts"]
|
[submodule "scripts/shared-hugo-scripts"]
|
||||||
path = scripts
|
path = scripts/shared-hugo-scripts
|
||||||
url = https://github.com/yuzu-emu/shared-hugo-scripts
|
url = https://github.com/yuzu-emu/shared-hugo-scripts.git
|
||||||
|
|
|
@ -13,13 +13,13 @@ const concat = require('gulp-concat');
|
||||||
const imageResize = require('gulp-image-resize');
|
const imageResize = require('gulp-image-resize');
|
||||||
|
|
||||||
gulp.task('scripts:games', function (callback) {
|
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);
|
callback(err);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('scripts:wiki', function (callback) {
|
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);
|
callback(err);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Reference in New Issue