From 0ea82f29e414c3d92be80c6acddcb26b06fb4034 Mon Sep 17 00:00:00 2001 From: Gal Schlezinger Date: Thu, 6 Jan 2022 16:14:27 +0200 Subject: [PATCH] Call fnm first --- docs/record_screen.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/record_screen.sh b/docs/record_screen.sh index f278e9f..6f4382e 100755 --- a/docs/record_screen.sh +++ b/docs/record_screen.sh @@ -7,6 +7,10 @@ function setup_binary() { cp ./target/release/fnm "$TEMP_DIR/fnm" export PATH=$TEMP_DIR:$PATH export FNM_DIR=$TEMP_DIR/.fnm + + # First run of the binary might be slower due to anti-virus software + echo "Using $(which fnm)" + echo " with version $(fnm --version)" } setup_binary