Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit e4dc601

Browse files
committed
Add --no-check in install script
1 parent 194d656 commit e4dc601

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

install.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { parse } from 'https://deno.land/[email protected]/flags/mod.ts'
22
import { red } from 'https://deno.land/[email protected]/fmt/colors.ts'
3-
import { dirname, join } from 'https://deno.land/[email protected]/path/mod.ts'
43
import { existsSync } from 'https://deno.land/[email protected]/fs/exists.ts'
4+
import { dirname, join } from 'https://deno.land/[email protected]/path/mod.ts'
55

66
export async function checkVersion(version: string): Promise<string> {
77
console.log('Looking up latest version...')
@@ -31,7 +31,8 @@ export async function install(version: string, forceUpgrade = false) {
3131
'install',
3232
'-A',
3333
'--unstable',
34-
'--location', 'http://localhost',
34+
'--no-check',
35+
'--location', 'http://localhost/',
3536
'-n', 'aleph',
3637
'-f',
3738
`https://deno.land/x/aleph@${version}/cli.ts`

0 commit comments

Comments
 (0)