Skip to content

Commit

Permalink
Have boot live here rather than in site repo
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Jul 3, 2024
1 parent 626dcfa commit c06a0b0
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
23 changes: 23 additions & 0 deletions boot-dev.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
set -e

ascii_art='________ __ ___.
\_____ \ _____ _____ | | ____ _\_ |__
/ | \ / \\__ \ | |/ / | \ __ \
/ | \ Y Y \/ __ \| <| | / \_\ \
\_______ /__|_| (____ /__|_ \____/|___ /
\/ \/ \/ \/ \/
'

echo -e "$ascii_art"
echo "=> Omakub is for fresh Ubuntu 24.04 installations only!"
echo -e "\nBegin installation (or abort with ctrl+c)..."

sudo apt-get update >/dev/null
sudo apt-get install -y git >/dev/null

echo "Cloning Omakub..."
rm -rf ~/.local/share/omakub
git clone https://github.com/basecamp/omakub.git ~/.local/share/omakub >/dev/null

echo "Installation starting..."
source ~/.local/share/omakub/install.sh
23 changes: 23 additions & 0 deletions boot.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
set -e

ascii_art='________ __ ___.
\_____ \ _____ _____ | | ____ _\_ |__
/ | \ / \\__ \ | |/ / | \ __ \
/ | \ Y Y \/ __ \| <| | / \_\ \
\_______ /__|_| (____ /__|_ \____/|___ /
\/ \/ \/ \/ \/
'

echo -e "$ascii_art"
echo "=> Omakub is for fresh Ubuntu 24.04 installations only!"
echo -e "\nBegin installation (or abort with ctrl+c)..."

sudo apt-get update >/dev/null
sudo apt-get install -y git >/dev/null

echo "Cloning stable Omakub..."
rm -rf ~/.local/share/omakub
git clone -b stable https://github.com/basecamp/omakub.git ~/.local/share/omakub >/dev/null

echo "Installation starting..."
source ~/.local/share/omakub/install.sh

0 comments on commit c06a0b0

Please sign in to comment.