From 92a15bdb12016da8b7f8f352291c74c634d32989 Mon Sep 17 00:00:00 2001 From: Michael Tyson Date: Mon, 29 Sep 2014 12:54:20 -0400 Subject: [PATCH] Changes to Julia Installer There's a new julia-installer.exe install file which made extract_dir no longer usable. It's a Nullsoft Installation package so I updated the manifest with the installer and uninstaller files as well as the command line arguments to go with each. --- julia.json | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/julia.json b/julia.json index c9b7ac6063..3934f5a0a3 100644 --- a/julia.json +++ b/julia.json @@ -12,15 +12,25 @@ "hash": "214d2a57da9d12ba7e39ef9cb2a41478d0901e1f79943a6c8b54ffe6958e0936" } }, - "extract_dir": "julia-e44b593905", + "installer": { + "file": "julia-installer.exe", + "args": [ + "/S", + "/D=$dir" + ] + }, + "uninstaller": { + "file": "uninstall.exe", + "args": "/S" + }, "env_set": { "JULIA_HOME": "$dir\\bin", - "JULIA_EXE": "julia-readline.exe", - "JULIA": "$dir\\bin\\julia-readline.exe", + "JULIA_EXE": "julia.exe", + "JULIA": "$dir\\bin\\julia.exe", "JL_PRIVATE_LIB_DIR": "bin" }, "bin": [ - [ "bin\\julia-readline.exe", "julia" ] + [ "bin\\julia.exe", "julia" ] ], "checkver": { "url": "http://julialang.org/downloads/",