bonfire's forthcoming build tool
Bonfire's forthcoming build tool.
raco pkg install --auto
in this directoryTo set your shell up to use it, there are two options. You only need to do one.
In your shell rc file, set an alias like this (changing the path to this directory)
alias jungle="racket $HOME/code/bonfire/jungle/main.rkt"
Alternatively, you may create a wrapper script in a directory on your
path that looks like this instead of an alias:
#!/bin/sh
racket $HOME/code/bonfire/jungle/main.rkt $@
Make it executable with chmod u+x jungle
cd
into the repo's directorygit pull
to fetch the latest versionraco pkg install --auto
againjungle git status
- overview of the current repositoriesjungle git fetch
- run git fetch
across all forks in parallelCopyright 2022 James Laver, bonfire contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.