mirror of
https://github.com/mudler/luet.git
synced 2025-04-28 03:30:09 +00:00
15 lines
166 B
Bash
Executable File
15 lines
166 B
Bash
Executable File
#!/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/
|
|
|