2022-04-28 22:30:55 +00:00
#!/bin/bash
2022-05-06 01:56:10 +00:00
#* linux-update.sh: Install and update dependencies of Mind Reader, on linux.
2022-04-28 22:30:55 +00:00
#* Heads-up, this expects to be run from Mind_Reader/setup-development/linux.
# If run with bash -vx, print useful information instead of just a + sign
export PS4 = '+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
# If run as root, it could be because sudo isn't installed (some people disagree with sudo, especially on Arch)
2022-04-28 23:10:31 +00:00
ELEVATE = '' ; if ( ( $UID != 0 ) ) ; then ELEVATE = 'sudo' ; fi
2022-04-28 22:30:55 +00:00
# Get option flags:
dry = false
while getopts d arg; do
case $arg in
d) dry = true; ;
esac
done
function dryrun {
if $dry ; then
echo " > $* [dry] " ;
else
echo " > $* "
$@
2022-04-28 23:10:31 +00:00
fi
2022-04-28 22:30:55 +00:00
}
2022-05-05 21:12:55 +00:00
# Get whether the user is running in Windows Subsystem for Linux
function getwsl {
grep "[Mm]icrosoft" /proc/version > /dev/null
return $?
}
# Get the user's default login shell
function getsh {
#* This code was created by user [Todd A. Jacobs](https://stackoverflow.com/users/1301972/todd-a-jacobs) on [StackOverflow](https://stackoverflow.com/a/11059152) and is used in accordance with Creative Commons CC BY-SA 3.0
getent passwd $LOGNAME | cut -d: -f7
}
# Install NVM (this is gross, but the recommended way to install nvm)
function installnvm {
# nvm's install script tries to be smart, so we have to work around its supposed cleverness
usershell = ` getsh`
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | dryrun " $usershell "
# Reload profile
case $usershell in
*/bash) dryrun . ~/.bashrc ~/.bashprofile; ;
*/zsh) dryrun . ~/.zshrc; ;
*) " Your shell, $usershell , is currently unsupported by nvm. It's up to you to set up your development environment. " ; exit; ;
esac
}
2022-04-28 22:30:55 +00:00
# Set these variables if you need to install for a different architecture
# Valid architectures are "x64", "arm64", "armhf"
arch = ""
2022-04-28 23:10:31 +00:00
case ` uname -i` in
2022-04-28 22:30:55 +00:00
"x86_64" ) arch = "x64" ; ;
"armv[6-8]*" ) arch = "armhf" ; ;
"aarch64" ) arch = "arm64" ; ;
*) echo " Architecture ' $( uname -i) ' unknown. Assuming x86_64... "
arch = "x64" ; ;
esac
if which pacman; then
# Install dependencies with pacman
2022-05-05 21:12:55 +00:00
printf "Installing dependencies with pacman...\n"
2022-05-05 22:08:48 +00:00
cat ./package-managers/pacman.dependencies | dryrun $ELEVATE pacman -S --needed -
2022-05-05 21:12:55 +00:00
# If not in Windows Subsystem for Linux, install vscode
2022-05-05 22:08:48 +00:00
[ [ !( getwsl) ] ] && dryrun $ELEVATE pacman -S --needed code
2022-05-05 21:12:55 +00:00
# Install Node Version Manager
installnvm
2022-04-29 07:45:05 +00:00
2022-04-28 22:30:55 +00:00
elif which apt-get; then
# Install dependencies using apt-get
2022-05-05 21:12:55 +00:00
printf "Installing dependencies with apt...\n"
2022-04-28 22:30:55 +00:00
dryrun xargs -a ./package-managers/apt.dependencies $ELEVATE apt-get install -y
# Check if vscode exists, if not, install it.
# Microsoft doesn't put it in any Ubuntu repos, you have to get it straight from them.
# This does have the side effect, however, of installing the official repository
2022-05-05 21:12:55 +00:00
# Don't attempt to install vscode if running in WSL; it can cause problems.
if !( which code) && !( getwsl) ; then
2022-04-28 22:30:55 +00:00
#* Install VSCode
vscodepackagename = "code_amd64.deb"
dryrun wget " https://code.visualstudio.com/sha/download?build=stable&os=linux-deb- $arch " -O ./code.deb
dryrun $ELEVATE apt install ./code.deb
dryrun rm ./code.deb
fi
2022-05-05 21:12:55 +00:00
# Install Node Version Manager (nvm)
installnvm
2022-04-28 22:30:55 +00:00
fi
cdir = $( pwd )
# Go back to source tree root
cd ../..
# Check the VSCode version
nodeversion = "node"
2022-04-28 22:38:47 +00:00
electronversion = ""
2022-04-28 22:30:55 +00:00
#* Note:
#* When adding support for new VSCode versions, update this case
#* By the time you're working on this project, things are likely going to differ!
2022-04-28 23:10:31 +00:00
case ` code --version` in
2022-04-28 22:30:55 +00:00
#* Each version of VSCode has a corresponding Electron version and Node version
2022-05-05 21:12:55 +00:00
#* These are used when configuring nvm
2022-05-05 21:45:48 +00:00
1.66.*) electronversion = "17.2.0" ; nodeversion = "16.13.0" ; ;
1.67.*) electronversion = "17.4.1" ; nodeversion = "16.13.0" ; ;
2022-04-28 23:30:25 +00:00
*) nodeversion = "--lts" ; ;
2022-04-28 22:30:55 +00:00
esac
# Install NodeJS and npm
2022-05-05 21:30:25 +00:00
printf " \nInstalling node $nodeversion \n "
2022-04-28 22:30:55 +00:00
dryrun nvm install " $nodeversion "
dryrun nvm use " $nodeversion "
# Use npm to install electron-rebuild and yo
2022-05-05 21:30:25 +00:00
printf "Installing electron-rebuild, yo, and generator-code\n"
2022-04-28 22:30:55 +00:00
dryrun npm install electron-rebuild yo generator-code
# use npm to acquire dependencies for Mind-Reader
2022-05-05 21:30:25 +00:00
printf "\nAcquiring dependencies...\n"
2022-04-28 22:30:55 +00:00
dryrun npm install
2022-04-28 23:16:33 +00:00
# automatically update vulnerable packages, if possible
2022-05-05 21:30:25 +00:00
printf "\nUpdating vulnerable packages, if possible...\n"
2022-04-28 23:16:33 +00:00
dryrun npm audit fix
2022-04-28 22:30:55 +00:00
# Use electron-rebuild to rebuild electron
2022-05-05 21:12:55 +00:00
if [ [ " $electronversion " != "" ] ] ; then
2022-05-05 21:30:25 +00:00
printf " \nRebuilding electron with version $electronversion ...\n "
2022-04-28 22:30:55 +00:00
dryrun electron-rebuild --version $electronversion
else
2022-05-05 21:30:25 +00:00
printf "\n%s\n%s\n%s\n%s\n" \
2022-04-28 22:30:55 +00:00
"Open Visual Studio Code, select the 'Help' tab in the toolbar, and go to 'About'." \
"Find the line that says 'Electron: [electron version]'" \
"Run the command below, filling in the Electron version with the one from that menu:" \
"electron-rebuild --version [electron version]"
fi
2022-04-28 23:10:31 +00:00
cd $cdir
2022-05-05 21:30:25 +00:00
echo "Done!"