From 142f97f9d4568c0437609c8f9a3d61faee7591b8 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: May 27 2020 04:54:41 +0000 Subject: meeting-people: add missing quotation mark The bash script was missing a quotation mark that caused it to error out with a syntax error. --- diff --git a/meeting-people.txt b/meeting-people.txt index 5d5b8b1..7e5f8ba 100644 --- a/meeting-people.txt +++ b/meeting-people.txt @@ -1,5 +1,5 @@ # List of people to ping before the Fedora Cloud community meetings -tail -n +5 $0 | tr '\n' ' ' && echo -e '\nFedora Cloud community meeting in #fedora-meeting-1' && echo "If you don't want to be pinged remove your name from this file: https://pagure.io/cloud-sig/blob/master/f/meeting-people.txt +tail -n +5 $0 | tr '\n' ' ' && echo -e '\nFedora Cloud community meeting in #fedora-meeting-1' && echo "If you don't want to be pinged remove your name from this file: https://pagure.io/cloud-sig/blob/master/f/meeting-people.txt" exit 0 dustymabe