Skip to content
Snippets Groups Projects
Commit 8be1c0a7 authored by Matthias Konitzny's avatar Matthias Konitzny :fire:
Browse files

Fixed a bug in the gulpfile which caused the dataset default images to not be...

Fixed a bug in the gulpfile which caused the dataset default images to not be included in the build step.
parent 5cff7506
Branches
Tags
No related merge requests found
Pipeline #50340 passed
...@@ -63,8 +63,8 @@ function copyEditorIcons() { ...@@ -63,8 +63,8 @@ function copyEditorIcons() {
function copyDatasetDefaultImages() { function copyDatasetDefaultImages() {
return gulp return gulp
.src(["dataset/images/**/*.png", "dataset/images/**/*.jpg"]) .src(["datasets/images/**/*.png", "datasets/images/**/*.jpg"])
.pipe(gulp.dest(dir.build + "dataset/images/")); .pipe(gulp.dest(dir.build + "datasets/images/"));
} }
function copyBackground() { function copyBackground() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment