Remove errant quotes around $dir var (#2003)

* Remove errant quotes around $dir var

* node*: Change multi-line post_install to array
This commit is contained in:
Ross Smith II 2018-02-03 13:47:12 -08:00 committed by Richard Kuhnt
parent c9da67cb2b
commit 71701e4712
12 changed files with 29 additions and 24 deletions

View File

@ -7,7 +7,7 @@
"installer": {
"args": [
"/S",
"/D=\"$dir\""
"/D=$dir"
]
},
"bin": [

View File

@ -23,7 +23,7 @@
"installer": {
"args": [
"/S",
"/D=\"$dir\""
"/D=$dir"
]
},
"uninstaller": {

View File

@ -10,7 +10,7 @@
"installer": {
"args": [
"/S",
"/D=\"$dir\""
"/D=$dir"
]
},
"uninstaller": {

View File

@ -7,7 +7,7 @@
"installer": {
"args": [
"/S",
"/D=\"$dir\""
"/D=$dir"
]
},
"uninstaller": {

View File

@ -16,7 +16,7 @@
"file": "julia-installer.exe",
"args": [
"/S",
"/D=\"$dir\""
"/D=$dir"
]
},
"uninstaller": {

View File

@ -15,7 +15,7 @@
"installer": {
"args": [
"/S",
"/D=\"$dir\""
"/D=$dir"
]
},
"uninstaller": {

View File

@ -4,8 +4,13 @@
"url": "http://www.vordweb.co.uk/standards/lynx_v283.zip",
"homepage": "http://www.vordweb.co.uk/standards/download_lynx.htm",
"hash": "552bc68afd2ff9a5de88f26d76f55dd8697cf6082c6afb01b3d1a9942f4d3ee0",
"bin": "lynx.ps1",
"pre_install": "
\"\\\"$dir\\lynx.exe\\\" --cfg=\\\"$dir\\lynx.cfg\\\"\" | out-file -enc oem \"$dir\\lynx.ps1\"
"
"bin": "lynx.cmd",
"persist": [
"$dir/lynx.cfg"
],
"pre_install": [
"$q = [char]34",
"set-content \"$dir/lynx.cfg\" -value $null",
"set-content \"$dir/lynx.cmd\" -value \"@$q$dir\\lynx.exe$q --cfg=$q$dir\\lynx.cfg$q %*\""
]
}

View File

@ -8,7 +8,7 @@
"installer": {
"args": [
"/S",
"/D=\"$dir\""
"/D=$dir"
]
},
"uninstaller": {

View File

@ -22,10 +22,10 @@
".",
"bin"
],
"post_install": "
# Set npm prefix to install modules inside bin and npm cache so they persist
Set-Content -Value \"prefix=\\\"$persist_dir\\bin\\\"`ncache=\\\"$persist_dir\\cache\\\"\" -Path \"$dir\\node_modules\\npm\\npmrc\"
",
"post_install": [
"# Set npm prefix to install modules inside bin and npm cache so they persist",
"Set-Content -Value \"prefix=$persist_dir\\bin`ncache=$persist_dir\\cache\" -Path \"$dir\\node_modules\\npm\\npmrc\""
],
"checkver": {
"url": "https://nodejs.org/download/chakracore-release/index.json",
"re": "v([\\d.]+)"

View File

@ -22,10 +22,10 @@
".",
"bin"
],
"post_install": "
# Set npm prefix to install modules inside bin and npm cache so they persist
Set-Content -Value \"prefix=\\\"$persist_dir\\bin\\\"`ncache=\\\"$persist_dir\\cache\\\"\" -Path \"$dir\\node_modules\\npm\\npmrc\"
",
"post_install": [
"# Set npm prefix to install modules inside bin and npm cache so they persist",
"Set-Content -Value \"prefix=$persist_dir\\bin`ncache=$persist_dir\\cache\" -Path \"$dir\\node_modules\\npm\\npmrc\""
],
"checkver": {
"url": "https://nodejs.org/en/download/",
"re": "LTS Version: <strong>([\\d.]+)</strong>"

View File

@ -22,10 +22,10 @@
".",
"bin"
],
"post_install": "
# Set npm prefix to install modules inside bin and npm cache so they persist
Set-Content -Value \"prefix=\\\"$persist_dir\\bin\\\"`ncache=\\\"$persist_dir\\cache\\\"\" -Path \"$dir\\node_modules\\npm\\npmrc\"
",
"post_install": [
"# Set npm prefix to install modules inside bin and npm cache so they persist",
"Set-Content -Value \"prefix=$persist_dir\\bin`ncache=$persist_dir\\cache\" -Path \"$dir\\node_modules\\npm\\npmrc\""
],
"checkver": {
"url": "https://nodejs.org/dist/latest/",
"re": "node-v([\\d.]+)-x86.msi"

View File

@ -17,7 +17,7 @@
"installer": {
"args": [
"/S",
"/D=\"$dir\""
"/D=$dir"
]
},
"checkver": {