sitoctt/Scripts/PostBuild.Common.sh

11 lines
261 B
Bash
Raw Normal View History

2023-03-14 15:23:35 +01:00
#!/bin/sh
# Common action after the base site build succeeded
2023-03-23 23:43:53 +01:00
#cp -vr ./Assets/* ./public/
2023-03-23 00:00:39 +01:00
2023-03-14 15:23:35 +01:00
# 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