mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2024-11-15 03:35:59 +00:00
John
e8afacef18
- Windows: - install: Move repo URI into variable Remove -NoWinget check (was unused) - upgrade: Change -NoWinget to disable updating with winget (can take a while) Create function to check install of node packages which are put on Path. - Linux: - Install: Port install-windows to some linux distros Support for Apt (Ubuntu, possibly Debian/Mint) Support for Pacman (Arch/Manjaro/Garuda) - Upgrade: Port upgrade-windows to some linux distros
60 lines
1.2 KiB
Bash
60 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
#* linux-install.sh: First-run setup script
|
|
#* Ensures git is installed, clones the repo, and then runs
|
|
|
|
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
|
|
ELEVATE='';if (( $UID != 0 )); then ELEVATE='sudo';fi
|
|
|
|
help () {
|
|
echo "Usage: $0 [-g path/to/git/directory]"
|
|
exit 0
|
|
}
|
|
|
|
|
|
GITDIR = "~/git"
|
|
|
|
# Get option flags:
|
|
dry=false
|
|
while getopts ghd arg; do
|
|
case $arg in
|
|
g) GITDIR="$OPTARG";;
|
|
h) help;;
|
|
d) dry=true;;
|
|
esac
|
|
done
|
|
|
|
function dryrun {
|
|
if $dry; then
|
|
echo "> $* [dry]";
|
|
else
|
|
echo "> $*"
|
|
$@
|
|
}
|
|
|
|
SETUPDIR= "Mind_Reader/setup-development"
|
|
REPOURI = "https://github.com/We-Dont-Byte/Mind_Reader.git"
|
|
|
|
# Install git
|
|
if which git; then
|
|
echo "Git already installed."
|
|
elif which pacman; then
|
|
# using pacman
|
|
dryrun $ELEVATE pacman -Sy git
|
|
elif which apt; then
|
|
# using apt
|
|
dryrun $ELEVATE apt-get update && \
|
|
dryrun $ELEVATE apt-get install git -y
|
|
fi #? TODO: other package managers?
|
|
|
|
echo Cloning repository into "$GITDIR"
|
|
dryrun mkdir "$GITDIR"
|
|
cd $GITDIR && git clone "$REPOURI"
|
|
|
|
# TODO: remove this when merging!
|
|
cd Mind_Reader
|
|
dryrun git checkout origin/johnBreaux
|
|
# TODO: remove this when merging!
|
|
|
|
cd "$GITDIR/$SETUPDIR"
|
|
bash ./linux-update.sh |