3f4d1f1555
Closes: #9396 [via git-merge-pr]
10 lines
272 B
Bash
Executable file
10 lines
272 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# fetch-xtools.sh
|
|
|
|
mkdir -p /tmp/bin
|
|
|
|
/bin/echo -e '\x1b[32mInstalling xtools...\x1b[0m'
|
|
wget -q -O - https://github.com/chneukirchen/xtools/archive/master.tar.gz | \
|
|
gunzip | tar x -C /tmp/bin --wildcards "xtools-master/x*" \
|
|
--strip-components=1 || exit 1
|