mirror of
https://github.com/yuzu-emu/yuzu-emu.github.io.git
synced 2025-06-11 16:06:41 +00:00
scripts/shared-hugo-scripts: use the latest commit
This commit is contained in:
parent
b1d09c5b43
commit
c72ea1e6b3
|
@ -3,8 +3,7 @@
|
||||||
echo -e '\e[1m\e[36m========== Installing gulp & dependencies ==========\e[0m'
|
echo -e '\e[1m\e[36m========== Installing gulp & dependencies ==========\e[0m'
|
||||||
yarn install
|
yarn install
|
||||||
# Install dependencies one-by-one to avoid race-conditions
|
# Install dependencies one-by-one to avoid race-conditions
|
||||||
yarn --cwd ./scripts/shared-hugo-scripts/wiki/
|
yarn --cwd ./scripts/shared-hugo-scripts/
|
||||||
yarn --cwd ./scripts/shared-hugo-scripts/compatdb/
|
|
||||||
yarn hugo version
|
yarn hugo version
|
||||||
echo -e '\e[1m\e[36m========== Starting gulp deploy task ===============\e[0m'
|
echo -e '\e[1m\e[36m========== Starting gulp deploy task ===============\e[0m'
|
||||||
if [[ -n "${EPHEMERAL_BASE_URL}" ]]; then
|
if [[ -n "${EPHEMERAL_BASE_URL}" ]]; then
|
||||||
|
|
|
@ -10,14 +10,14 @@ const parallel = require('concurrent-transform');
|
||||||
const browserSync = require('browser-sync').create();
|
const browserSync = require('browser-sync').create();
|
||||||
|
|
||||||
// Gulp Run Tasks
|
// Gulp Run Tasks
|
||||||
gulp.task('scripts:compatdb', callback => {
|
gulp.task('scripts:compatdb', function (callback) {
|
||||||
exec('cd ./scripts/shared-hugo-scripts/compatdb/ && yarn install && node app.js', (err, stdout, stderr) => {
|
exec('yarn run compatdb', { cwd: './scripts/shared-hugo-scripts/' }, function (err, stdout, stderr) {
|
||||||
callback(err);
|
callback(err);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('scripts:wiki', callback => {
|
gulp.task('scripts:wiki', function (callback) {
|
||||||
exec('cd ./scripts/shared-hugo-scripts/wiki/ && yarn install && node app.js', (err, stdout, stderr) => {
|
exec('yarn run wiki', { cwd: './scripts/shared-hugo-scripts/' }, function (err, stdout, stderr) {
|
||||||
callback(err);
|
callback(err);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 6607aac2f25352e6b35f1f4f99dc9f201603f11f
|
Subproject commit e22d9896a3d67f5395707a252ff887e55642e0ea
|
Loading…
Reference in a new issue