commit e162a8cb655adc95c8cd8d87319a76c8e9792994 parent 7a201c3b885c5d23bf0fd0f3da32379a49b30c38 Author: Nic Eigel <nic@eigel.ch> Date: Sun, 14 Jan 2024 16:09:05 +0100 adding auditor-backoffice to prebuilt Diffstat:
| A | contrib/copy-auditor-backoffice-into-prebuilt.sh | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/contrib/copy-auditor-backoffice-into-prebuilt.sh b/contrib/copy-auditor-backoffice-into-prebuilt.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +[ ! -d prebuilt ] && git worktree add -f prebuilt prebuilt && exit 1 + +find packages/auditor-backoffice-ui/dist/prod/ -type f -printf '%P\n' | sort > prebuilt/auditor-backoffice/bof + +while IFS= read -r file; do + cp packages/auditor-backoffice-ui/dist/prod/$file prebuilt/auditor-backoffice/$file +done < prebuilt/auditor-backoffice/bof +