summaryrefslogtreecommitdiff
path: root/contrib/copy-auditor-backoffice-into-prebuilt.sh
blob: 6b6544183eb6b6a6f33789046dcb9858fdf385ca (plain)
1
2
3
4
5
6
7
8
9
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