File tree Expand file tree Collapse file tree 5 files changed +21
-6
lines changed
Expand file tree Collapse file tree 5 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 5858 run : |
5959 cd $GITHUB_WORKSPACE
6060 ./scripts/install-plugins.sh vendor public_html/lists/admin/plugins/
61+ ./scripts/install-themes.sh vendor public_html/lists/admin/ui/
6162
6263 - name : Install the phpList4 based REST API
6364 run : |
Original file line number Diff line number Diff line change @@ -12,4 +12,9 @@ public_html/lists/admin/info/
1212.vagrant
1313public_html /lists /updater
1414public_html /lists /texts
15+ public_html /lists /admin /plugins /
16+ /parked /
17+ public_html /lists /admin /ui /dressprow
18+ public_html /lists /admin /ui /dressprow-ph
19+ public_html /lists /admin /ui /phplist-ui- *
1520
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ from=$1
4+ to=$2
5+
6+ [[ -z $from ]] || [[ ! -d $from ]] || [[ -z $to ]] || [[ ! -d $to ]] && exit ;
7+
8+ echo $from $to
9+
10+ for theme in $( ls -d $from /* /phplist-ui-* ) ; do
11+ [[ ! -z " $( ls -A $theme ) " ]] && {
12+ echo installing $theme
13+ cp -R $theme $to
14+ }
15+ done
You can’t perform that action at this time.
0 commit comments