You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2018/02/09 05:22:19 UTC

[sling-whiteboard] branch master updated: Adding the latest version and correcting the paths to the starter assets

This is an automated email from the ASF dual-hosted git repository.

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git


The following commit(s) were added to refs/heads/master by this push:
     new afee9f9  Adding the latest version and correcting the paths to the starter assets
afee9f9 is described below

commit afee9f95062e068e4e8f8bfaa6ad0e4fcfc01ea2
Author: Dan Klco <da...@gmail.com>
AuthorDate: Fri Feb 9 00:22:13 2018 -0500

    Adding the latest version and correcting the paths to the starter assets
---
 cms/docker/Dockerfile                | 2 +-
 cms/ui/src/main/frontend/gulpfile.js | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/cms/docker/Dockerfile b/cms/docker/Dockerfile
index d89b6db..4decc00 100644
--- a/cms/docker/Dockerfile
+++ b/cms/docker/Dockerfile
@@ -24,7 +24,7 @@ VOLUME /opt/sling/sling
 
 # Setup Sling CMS
 RUN mkdir -p /opt/sling
-RUN wget https://repository.apache.org/content/repositories/snapshots/org/apache/sling/org.apache.sling.cms.builder/1.0.0-SNAPSHOT/org.apache.sling.cms.builder-1.0.0-20180208.183119-4.jar -O /opt/sling/org.apache.sling.cms.jar
+RUN wget https://repository.apache.org/content/repositories/snapshots/org/apache/sling/org.apache.sling.cms.builder/1.0.0-SNAPSHOT/org.apache.sling.cms.builder-1.0.0-20180209.045551-6.jar -O /opt/sling/org.apache.sling.cms.jar
 ENV JAVA_OPTS -Xmx512m
 ENV SLING_OPTS ''
 
diff --git a/cms/ui/src/main/frontend/gulpfile.js b/cms/ui/src/main/frontend/gulpfile.js
index 053d648..80513a2 100755
--- a/cms/ui/src/main/frontend/gulpfile.js
+++ b/cms/ui/src/main/frontend/gulpfile.js
@@ -60,7 +60,7 @@ gulp.task('styles', function() {
      	.pipe(concat('styles.min.css'))
         .pipe(gulp.dest('./dist/jcr_root/etc/clientlibs/sling-cms/css'))
 	 	.pipe(rename('bundle.css'))
-	 	.pipe(gulp.dest('./dist/jcr_root/etc/clientlibs/launchpad/css'));
+	 	.pipe(gulp.dest('./dist/jcr_root/content/starter/css'));
 	 return mergedStream;
 });
 
@@ -90,7 +90,7 @@ gulp.task('js', function() {
 gulp.task('assets', function() {
 	gulp.src('./src/{fonts,img}/**/*')
 		.pipe(gulp.dest('./dist/jcr_root/etc/clientlibs/sling-cms'))
-		.pipe(gulp.dest('./dist/jcr_root/etc/clientlibs/launchpad'));
+		.pipe(gulp.dest('./dist/jcr_root/content/starter'));
 	gulp.src('./node_modules/summernote/dist/font/*')
 		.pipe(gulp.dest('./dist/jcr_root/etc/clientlibs/sling-cms/css/font'));
 });

-- 
To stop receiving notification emails like this one, please contact
dklco@apache.org.