mirror of
https://github.com/zhigang1992/yarn.git
synced 2026-06-10 07:55:57 +08:00
9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
reset="\e[0m"
|
|
red="\e[0;31m"
|
|
|
|
printf "${red}This script has moved to https://yarnpkg.com/install.sh, please update your URL!$reset\n"
|
|
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- "$@"
|