mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 03:41:27 +00:00
getplugs: add "master" version support (#560)
Pass "master" as first argument to the script.
This commit is contained in:
parent
2a5f8433b8
commit
11c9648774
|
@ -43,8 +43,12 @@ prompt () {
|
||||||
# sucmd=: # noop
|
# sucmd=: # noop
|
||||||
# fi
|
# fi
|
||||||
|
|
||||||
if which nnn >/dev/null 2>&1; then
|
if [ "$1" = "master" ] ; then
|
||||||
|
VER="master"
|
||||||
|
ARCHIVE_URL=https://github.com/jarun/nnn/archive/master.tar.gz
|
||||||
|
elif which nnn >/dev/null 2>&1; then
|
||||||
VER=$(nnn -V)
|
VER=$(nnn -V)
|
||||||
|
ARCHIVE_URL=https://github.com/jarun/nnn/releases/download/v"$VER"/nnn-v"$VER".tar.gz
|
||||||
else
|
else
|
||||||
echo "nnn is not installed"
|
echo "nnn is not installed"
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -57,8 +61,8 @@ fi
|
||||||
|
|
||||||
mkdir -p "$PLUGIN_DIR"
|
mkdir -p "$PLUGIN_DIR"
|
||||||
cd "$CONFIG_DIR" || exit 1
|
cd "$CONFIG_DIR" || exit 1
|
||||||
curl -Ls -O https://github.com/jarun/nnn/releases/download/v"$VER"/nnn-v"$VER".tar.gz
|
curl -Ls "$ARCHIVE_URL" -o nnn-"$VER".tar.gz
|
||||||
tar -zxf nnn-v"$VER".tar.gz
|
tar -zxf nnn-"$VER".tar.gz
|
||||||
|
|
||||||
cd nnn-"$VER"/plugins || exit 1
|
cd nnn-"$VER"/plugins || exit 1
|
||||||
|
|
||||||
|
@ -76,4 +80,4 @@ for f in $(find . -maxdepth 1 \( ! -iname "." ! -iname "*.md" \)); do
|
||||||
done
|
done
|
||||||
cd ../.. || exit 1
|
cd ../.. || exit 1
|
||||||
|
|
||||||
rm -rf nnn-"$VER"/ nnn-v"$VER".tar.gz
|
rm -rf nnn-"$VER"/ nnn-"$VER".tar.gz
|
||||||
|
|
Loading…
Reference in a new issue