Skip to content

Commit

Permalink
4
Browse files Browse the repository at this point in the history
  • Loading branch information
txthinking committed Feb 28, 2022
1 parent a6118d5 commit 74472a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
func main() {
app := cli.NewApp()
app.Name = "nami"
app.Version = "20220401"
app.Version = "20220404"
app.Usage = "The easy way to download command from anywhere"
app.Authors = []*cli.Author{
{
Expand Down
2 changes: 1 addition & 1 deletion nami.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func (n *Nami) Install(name string) (func(), error) {
if runtime.GOOS == "windows" {
deno = filepath.Join(n.BinDir, "deno.exe")
}
cmd := exec.Command(deno, "run", "-r", "-A", s+name+".js")
cmd := exec.Command(deno, "run", "-r", "-A", "--unstable", s+name+".js")
cmd.Env = append(os.Environ(),
"DENO_DIR="+n.DenoDir,
)
Expand Down

0 comments on commit 74472a0

Please sign in to comment.