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
No related branches found
No related tags found
No related merge requests found
Pipeline #50340 passed
......@@ -63,8 +63,8 @@ function copyEditorIcons() {
function copyDatasetDefaultImages() {
return gulp
.src(["dataset/images/**/*.png", "dataset/images/**/*.jpg"])
.pipe(gulp.dest(dir.build + "dataset/images/"));
.src(["datasets/images/**/*.png", "datasets/images/**/*.jpg"])
.pipe(gulp.dest(dir.build + "datasets/images/"));
}
function copyBackground() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment