mirror of
https://github.com/tumillanino/miasma-os.git
synced 2026-04-11 07:15:31 +00:00
18 lines
403 B
Bash
18 lines
403 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -oue pipefail
|
|
|
|
echo 'Preparing directory for cloning...'
|
|
|
|
mkdir -p /tmp/clone/ChromeOS-kde
|
|
cd /tmp/clone/ChromeOS-kde
|
|
echo 'Directory created.'
|
|
|
|
git clone https://github.com/vinceliuice/ChromeOS-kde.git
|
|
echo 'Repo cloned. Running install script...'
|
|
|
|
ChromeOS-kde/install.sh
|
|
echo 'Install script finished. Removing cloned repo...'
|
|
|
|
rm -r ChromeOS-kde/
|
|
echo 'Cloned repo deleted.' |