File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ dvm_test_error() {
1010
1111# Install deno v1.0.0
1212TARGET_VERSION=" 1.0.0"
13- dvm install " v$TARGET_VERSION " --from-binary -- verbose || dvm_test_error " run 'dvm install v$TARGET_VERSION ' failed"
13+ dvm install " v$TARGET_VERSION " --verbose || dvm_test_error " run 'dvm install v$TARGET_VERSION ' failed"
1414
1515# Check installed version directory
1616[ -d " $DVM_DIR /versions/v$TARGET_VERSION " ] || dvm_test_error " '$DVM_DIR /versions/v$TARGET_VERSION ' is not a directory"
1717
1818# Install another deno
19- dvm install v1.14.0 --verbose --from-binary
19+ dvm install v1.14.0 --verbose
2020
2121# Check deno version
2222dvm run " v$TARGET_VERSION " --version | grep " deno $TARGET_VERSION " || dvm_test_error " deno is invalid"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dvm uninstall default --verbose || dvm_test_error "run 'dvm uninstall default' f
1616[ ! -f " $DVM_DIR /versions/v1.14.0/deno" ] || dvm_test_error " deno v1.14.0 should be uninstalled"
1717
1818# Install deno v1.14.0 again
19- dvm install v1.14.0 --verbose --from-binary
19+ dvm install v1.14.0 --verbose
2020
2121dvm deactivate
2222
You can’t perform that action at this time.
0 commit comments