mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 22:31:51 +00:00

The v* glob expansions were failing with an error under zsh, just set nullglob/NULL_GLOB and make both bash and zsh happier.
13 lines
180 B
Bash
Executable File
13 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
|
|
(
|
|
cd ../..
|
|
|
|
# Back up
|
|
|
|
type setopt >/dev/null 2>&1 && setopt NULL_GLOB
|
|
type shopt >/dev/null 2>&1 && shopt -s nullglob
|
|
rm -Rf v* src alias
|
|
mkdir src alias
|
|
)
|