This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env nu | |
def main [ | |
--depth=1: int # How many commits back to go | |
script # The benchmark script you want to run | |
] { | |
let start_commit = (git rev-parse --short HEAD) | |
let start_branch = (git branch --show-current) | |
mut commits = [] | |
for i in ..$depth { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.