From 0ca75f7782ad440511facf61f7064be990bc2309 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Fri, 8 Nov 2019 00:07:53 +0300 Subject: [PATCH] tools/fast: run git pull --- tools/fast/fast.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/fast/fast.v b/tools/fast/fast.v index f31ce80b31..bf0db40ff3 100644 --- a/tools/fast/fast.v +++ b/tools/fast/fast.v @@ -14,6 +14,8 @@ fn main() { } println('fast.html generator\n') // Fetch the last commit's hash + println('Fetching updates...') + exec('git pull --rebase') mut commit_hash := exec('git rev-parse HEAD') commit_hash = commit_hash[..7] if !os.file_exists('table.html') {