Revert "attempt to add the marlo theme to the theme building process"

This reverts commit f54d7c74a2.
This commit is contained in:
Sky Splash 2024-05-30 13:45:02 +02:00
parent e650b0b35e
commit 9248b70137

View file

@ -12,9 +12,6 @@ themes.:
simple.: simple.:
build : build simple theme build : build simple theme
test : test simple theme test : test simple theme
marlo.:
build : build simple theme
test : test simple theme
EOF EOF
} }
@ -23,7 +20,6 @@ themes.all() {
pygments.less pygments.less
node.env node.env
themes.simple themes.simple
themes.marlo
) )
dump_return $? dump_return $?
} }
@ -60,14 +56,6 @@ themes.simple() {
dump_return $? dump_return $?
} }
themes.marlo() {
( set -e
build_msg GRUNT "theme: marlo"
npm --prefix searx/static/themes/marlo run build
)
dump_return $?
}
themes.simple.test() { themes.simple.test() {
build_msg TEST "theme: simple" build_msg TEST "theme: simple"
nodejs.ensure nodejs.ensure
@ -75,11 +63,3 @@ themes.simple.test() {
npm --prefix searx/static/themes/simple run test npm --prefix searx/static/themes/simple run test
dump_return $? dump_return $?
} }
themes.marlo.test() {
build_msg TEST "theme: marlo"
nodejs.ensure
npm --prefix searx/static/themes/marlo install
npm --prefix searx/static/themes/marlo run test
dump_return $?
}