Skip to content
Snippets Groups Projects
Select Git revision
  • c7490cafad06532cde14bba9cbd0b3d7e5f26599
  • master default
2 results

.netrc

Blame
  • bfg 208 B
    #!/bin/sh
    set -eu
    
    __BFG_JAR="$HOME/Documents/bin/bfg.jar"
    [ -f "$__BFG_JAR" ] || curl 'https://search.maven.org/remote_content?g=com.madgag&a=bfg&v=LATEST' -sLO "$__BFG_JAR"
    exec java -jar "$__BFG_JAR" "$@"