mirror of
https://github.com/danbulant/deno_install
synced 2026-06-12 19:21:17 +00:00
17 lines
266 B
Bash
Executable file
17 lines
266 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ev
|
|
|
|
# Lint.
|
|
shellcheck -s sh ./*.sh
|
|
shfmt -d .
|
|
|
|
# Test we can install a specific version
|
|
rm -rf ~/.deno
|
|
./install.sh v0.2.0
|
|
~/.deno/bin/deno -v | grep -e 0.2.0
|
|
|
|
# Test we can get the latest version.
|
|
rm -rf ~/.deno
|
|
sh ./install.sh
|
|
~/.deno/bin/deno -v
|