mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-14 08:01:51 +00:00
15 lines
189 B
Bash
15 lines
189 B
Bash
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
(
|
|
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
|
|
)
|