diff options
Diffstat (limited to 'contrib/copy-demobank-into-prebuilt.sh')
-rwxr-xr-x | contrib/copy-demobank-into-prebuilt.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/copy-demobank-into-prebuilt.sh b/contrib/copy-demobank-into-prebuilt.sh index f5292a767..755b66150 100755 --- a/contrib/copy-demobank-into-prebuilt.sh +++ b/contrib/copy-demobank-into-prebuilt.sh @@ -1,6 +1,6 @@ #!/bin/bash -[ ! -d prebuilt ] && echo 'directory "prebuilt" not found. first checkout the prebuilt branch into a prebuilt directory' && exit 1 +[ ! -d prebuilt ] && git worktree add -f prebuilt prebuilt && exit 1 find packages/demobank-ui/dist/prod/ -type f -printf '%P\n' | sort > prebuilt/demobank/bof |