sitoctt/Scripts/PostBuild.Common.sh
2023-03-23 23:43:53 +01:00

11 lines
261 B
Bash

#!/bin/sh
# Common action after the base site build succeeded
#cp -vr ./Assets/* ./public/
# 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