daniel.franzini
2017-12-5 18:49:29

@daniel.franzini has joined the channel


daniel.franzini
2017-12-5 18:51:14

Hello, is this channel the appropriate place to ask for help?


eeide
2017-12-5 18:51:59

@daniel.franzini Yes.


daniel.franzini
2017-12-5 18:52:28

So, I downloaded the minimal racket package and tried to install “main-distribution” packages


daniel.franzini
2017-12-5 18:52:33

installation works fine


daniel.franzini
2017-12-5 18:52:47

but the files are copied to some weird folder under AppData\Roaming


daniel.franzini
2017-12-5 18:52:59

can I just keep everything in one place?


daniel.franzini
2017-12-5 18:53:35

is there some command line switch or environment variable


abmclin
2017-12-5 18:55:42

@daniel.franzini what happened is you installed the packages in user scope which will install to a default location on a per user basis. AppData\Roaming is the normal place to store per user data under Windows


daniel.franzini
2017-12-5 18:55:59

yes, I realized that


abmclin
2017-12-5 18:56:17

if you want main-distribution to be saved in the same place as the main Racket installation, you need to use installation scope


abmclin
2017-12-5 18:56:53

raco pkg install --scope installation <your package>


daniel.franzini
2017-12-5 18:57:13

nice!


daniel.franzini
2017-12-5 18:57:20

will try that right now


abmclin
2017-12-5 18:57:25

I imagine it’s probably possible to configure a different installation directory


abmclin
2017-12-5 18:57:30

daniel.franzini
2017-12-5 18:58:23

this might be the solution: —scope-dir ‹dir› — Select ‹dir› as the package scope.


abmclin
2017-12-5 18:59:04

yes that sounds right, you can supply a directory path which will cause packages to be saved to that path


abmclin
2017-12-5 19:00:32

you likely will need to configure Racket to find your directory though


daniel.franzini
2017-12-5 19:11:39

how should I setup racket?


abmclin
2017-12-5 19:36:04

try https://docs.racket-lang.org/raco/config-file.html see if it has the info you need


samth
2017-12-6 02:28:03

@mflatt I think your recent macOS change broke the db tests on Travis: https://travis-ci.org/racket/racket/jobs/310672787#L2102


mflatt
2017-12-6 03:00:50

@samth I think it may have broken with the same Travis Mac OS upgrade, but it failed before the envvar change: https://travis-ci.org/racket/racket/jobs/310616809#L2219


samth
2017-12-6 03:04:46

This may have more details: https://blog.travis-ci.com/2017-10-16-a-new-default-os-x-image-is-coming — looks like the primary change was to xcode


me1
2017-12-6 06:41:08

is it possible to write a macro that converts: ’(a b c) to a string of “a b c” but (list a b c) to a list?