From eb093d13439c3dae9c3ae5405b617ffbf4f12418 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Tue, 4 Jan 2022 23:21:32 -0800 Subject: [PATCH] Add inotify-tools to bootstrap script --- bin/bootstrap | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/bootstrap b/bin/bootstrap index 3915686..dd92131 100755 --- a/bin/bootstrap +++ b/bin/bootstrap @@ -8,7 +8,7 @@ SWIFT_DIR=swift-$SWIFT_VERSION-RELEASE-ubuntu20.04 SWIFT_FILENAME=$SWIFT_DIR.tar.gz if [[ $(uname) = "Linux" ]]; then - sudo apt-get install \ + sudo apt install -y \ binutils \ git \ gnupg2 \ @@ -42,6 +42,9 @@ if [[ $(uname) = "Linux" ]]; then fi echo "*** add $PWD/$SWIFT_DIR/usr/bin to PATH in your shell's rc file" fi + + echo "*** installing inotify-tools for watch script" + sudo apt install -y inotify-tools fi echo "*** done"