mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
13 lines
251 B
Bash
13 lines
251 B
Bash
#!/bin/sh -e
|
|
|
|
. ../../common-script.sh
|
|
|
|
installMeld() {
|
|
cd "$HOME" && git clone https://gitlab.gnome.org/GNOME/meld.git
|
|
echo "PATH=\$PATH:$HOME/meld/bin" | "$ESCALATION_TOOL" tee -a /etc/environment
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
installMeld
|