mirror of
https://github.com/mudler/luet.git
synced 2025-04-29 12:04:17 +00:00
15 lines
166 B
Bash
15 lines
166 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
"${ROOT_DIR}"/scripts/build.sh
|
||
|
|
||
|
git branch -D gh-pages || true
|
||
|
|
||
|
git checkout --orphan gh-pages
|
||
|
|
||
|
git rm -rf .
|
||
|
|
||
|
cp -rfv public/* ./
|
||
|
rm -rf public/
|
||
|
|