mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 14:21:50 +00:00
15 lines
189 B
Bash
Executable File
15 lines
189 B
Bash
Executable File
#!/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
|
|
)
|