Skip to content
Snippets Groups Projects
Commit 9e247978 authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #2894493: Updated the script for Createing new Vartheme sub theme for a project..

parent d8e30783
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Change directory to the drupal docroot.
cd ../..
# Create new vartheme subtheme.
bootstrap_library_version="3.3.7";
......@@ -174,3 +177,21 @@ else
echo "---------------------------------------------------------------------------";
exit 1;
fi
################################################################################
##
## Quick tip on how to use this script command file.
##
## Create new Vartheme sub theme for a project.
##
## composer create-new-vartheme "THEME_NAME" "ltr" "docroot/sites/default/themes/custom"
##
## For right to left themes.
##
## composer create-new-vartheme "THEME_NAME" "rtl" "docroot/sites/default/themes/custom"
##
## or to create a new theme in the docroot/themes/custom
##
## composer create-new-vartheme "THEME_NAME" "ltr"
##
################################################################################
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