Alexander Mills
Alexander Mills
the command `r2g compare` will compare the latest published version on npm with the git index. see: https://stackoverflow.com/questions/57400715/compare-npm-pack-tarball-with-whats-on-npm it will open some editor that can diff all the files, probably...
https://asciinema.org/
Use these: ```bash if ! git diff --quiet; then echo 'Changes to files need to be committed. Check your git index.'; exit 1; fi if test `git status --porcelain |...
To make it pretty, go from this: ```console r2g: Re-creating folders "$HOME/.r2g/temp"... r2g: Copying your user defined tests to: "/Users/alex/.r2g/temp/project" ... r2g: Running the following command from your project copy...
Most likely because: ```js const path = require('path'); if (!path.isAbsolute(process.env.MY_DOCKER_R2G_SEARCH_ROOT || '')) { throw new Error('Please set the env var "MY_DOCKER_R2G_SEARCH_ROOT" to an absolute path.'); } ``` Actual error: `...
on macos and *nix? /usr/local/etc/bash_completion.d
This is unlikely to be useful, but we could use a command line switch to use a url instead of the local project and test that with r2g. This means...
We should probably preserve file permissions when using ```bash $ rsync -r --perms ```
https://www.cyberciti.biz/faq/unix-linux-appleosx-bsd-tar-remove-directory/
https://unix.stackexchange.com/questions/105/chroot-jail-what-is-it-and-how-do-i-use-it Use chroot to prevent dropping below $HOME/.r2g/temp