Skip to content

Commit

Permalink
Always quote %R% on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Jan 19, 2015
1 parent 2f70142 commit 11daa4b
Show file tree
Hide file tree
Showing 58 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion r-packages/r-boot/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-boot/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('boot')" # [not win]
- "%R% -e \"library('boot')\"" # [win]
- "\"%R%\" -e \"library('boot')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-class/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-class/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('class')" # [not win]
- "%R% -e \"library('class')\"" # [win]
- "\"%R%\" -e \"library('class')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-cluster/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-cluster/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('cluster')" # [not win]
- "%R% -e \"library('cluster')\"" # [win]
- "\"%R%\" -e \"library('cluster')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-codetools/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-codetools/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('codetools')" # [not win]
- "%R% -e \"library('codetools')\"" # [win]
- "\"%R%\" -e \"library('codetools')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-colorspace/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-colorspace/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('colorspace')" # [not win]
- "%R% -e \"library('colorspace')\"" # [win]
- "\"%R%\" -e \"library('colorspace')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-dichromat/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-dichromat/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('dichromat')" # [not win]
- "%R% -e \"library('dichromat')\"" # [win]
- "\"%R%\" -e \"library('dichromat')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-digest/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-digest/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('digest')" # [not win]
- "%R% -e \"library('digest')\"" # [win]
- "\"%R%\" -e \"library('digest')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-foreign/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-foreign/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('foreign')" # [not win]
- "%R% -e \"library('foreign')\"" # [win]
- "\"%R%\" -e \"library('foreign')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-ggplot2/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-ggplot2/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('ggplot2')" # [not win]
- "%R% -e \"library('ggplot2')\"" # [win]
- "\"%R%\" -e \"library('ggplot2')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-gtable/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-gtable/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('gtable')" # [not win]
- "%R% -e \"library('gtable')\"" # [win]
- "\"%R%\" -e \"library('gtable')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-kernsmooth/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-kernsmooth/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('KernSmooth')" # [not win]
- "%R% -e \"library('KernSmooth')\"" # [win]
- "\"%R%\" -e \"library('KernSmooth')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-labeling/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-labeling/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('labeling')" # [not win]
- "%R% -e \"library('labeling')\"" # [win]
- "\"%R%\" -e \"library('labeling')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-lattice/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-lattice/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('lattice')" # [not win]
- "%R% -e \"library('lattice')\"" # [win]
- "\"%R%\" -e \"library('lattice')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-mass/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-mass/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('MASS')" # [not win]
- "%R% -e \"library('MASS')\"" # [win]
- "\"%R%\" -e \"library('MASS')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-matrix/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-matrix/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('Matrix')" # [not win]
- "%R% -e \"library('Matrix')\"" # [win]
- "\"%R%\" -e \"library('Matrix')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-mgcv/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-mgcv/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('mgcv')" # [not win]
- "%R% -e \"library('mgcv')\"" # [win]
- "\"%R%\" -e \"library('mgcv')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-munsell/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-munsell/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('munsell')" # [not win]
- "%R% -e \"library('munsell')\"" # [win]
- "\"%R%\" -e \"library('munsell')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-nlme/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-nlme/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('nlme')" # [not win]
- "%R% -e \"library('nlme')\"" # [win]
- "\"%R%\" -e \"library('nlme')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-nnet/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-nnet/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('nnet')" # [not win]
- "%R% -e \"library('nnet')\"" # [win]
- "\"%R%\" -e \"library('nnet')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-plyr/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
6 changes: 3 additions & 3 deletions r-packages/r-plyr/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ build:
requirements:
build:
- r >=2.11.0
- r-rcpp >=0.11.0
- r-rcpp

run:
- r >=2.11.0
- r-rcpp >=0.11.0
- r-rcpp

test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('plyr')" # [not win]
- "%R% -e \"library('plyr')\"" # [win]
- "\"%R%\" -e \"library('plyr')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-proto/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-proto/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('proto')" # [not win]
- "%R% -e \"library('proto')\"" # [win]
- "\"%R%\" -e \"library('proto')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-rcolorbrewer/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-rcolorbrewer/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('RColorBrewer')" # [not win]
- "%R% -e \"library('RColorBrewer')\"" # [win]
- "\"%R%\" -e \"library('RColorBrewer')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-rcpp/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-rcpp/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('Rcpp')" # [not win]
- "%R% -e \"library('Rcpp')\"" # [win]
- "\"%R%\" -e \"library('Rcpp')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-reshape2/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-reshape2/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('reshape2')" # [not win]
- "%R% -e \"library('reshape2')\"" # [win]
- "\"%R%\" -e \"library('reshape2')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-rpart/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-rpart/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test:
commands:
# You can put additional test commands to be run here.
- $R -e "library('rpart')" # [not win]
- "%R% -e \"library('rpart')\"" # [win]
- "\"%R%\" -e \"library('rpart')\"" # [win]

# You can also put a file called run_test.py, run_test.sh, or run_test.bat
# in the recipe that will be run at test time.
Expand Down
2 changes: 1 addition & 1 deletion r-packages/r-scales/bld.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%R% CMD INSTALL --build .
"%R%" CMD INSTALL --build .
if errorlevel 1 exit 1

@rem Add more build steps here, if they are necessary.
Expand Down
Loading

0 comments on commit 11daa4b

Please sign in to comment.