mirror of https://gitlab.com/octtspacc/sitoctt
9 lines
231 B
Bash
9 lines
231 B
Bash
|
#!/bin/sh
|
||
|
# Common action after the base site build succeeded
|
||
|
|
||
|
# Compile self-executable assets
|
||
|
#for Dir in public public.*
|
||
|
#do
|
||
|
find ./public/Assets/ -type f -name "*.*.SelfBuild.js" -exec sh -c "echo {}; node {}; rm {}" \;
|
||
|
#done
|